curl/tests/libtest/first.c

27 lines
509 B
C
Raw Normal View History

#include <curl/curl.h>
2002-12-12 08:40:16 -05:00
#ifdef MALLOCDEBUG
/* provide a proto for this debug function */
extern void curl_memdebug(const char *);
#endif
/* test is provided in the test code file */
CURLcode test(char *url);
int main(int argc, char **argv)
{
2002-12-12 08:40:16 -05:00
char *URL;
if(argc< 2 ) {
fprintf(stderr, "Pass URL as argument please\n");
return 1;
}
2002-12-12 08:40:16 -05:00
URL = argv[1]; /* provide this to the rest */
fprintf(stderr, "URL: %s\n", URL);
2002-12-12 08:40:16 -05:00
#ifdef MALLOCDEBUG
curl_memdebug("memdump");
2002-12-12 08:40:16 -05:00
#endif
return test(URL);
}