mirror of
https://github.com/moparisthebest/curl
synced 2024-11-10 03:25:04 -05:00
11 lines
176 B
C
11 lines
176 B
C
|
#include <curl/curl.h>
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
if(argc< 2 ) {
|
||
|
fprintf(stderr, "Pass URL as argument please\n");
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
curl_memdebug("memdump");
|