2003-01-08 04:37:35 -05:00
|
|
|
#include "test.h"
|
2002-12-12 07:11:16 -05:00
|
|
|
|
2003-07-04 12:37:16 -04:00
|
|
|
#ifdef CURLDEBUG
|
2002-12-12 08:40:16 -05:00
|
|
|
/* 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);
|
|
|
|
|
2002-12-13 11:22:57 -05:00
|
|
|
char *arg2=NULL;
|
|
|
|
|
2002-12-12 07:11:16 -05:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2002-12-12 08:40:16 -05:00
|
|
|
char *URL;
|
2002-12-12 07:11:16 -05:00
|
|
|
if(argc< 2 ) {
|
|
|
|
fprintf(stderr, "Pass URL as argument please\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2002-12-13 11:22:57 -05:00
|
|
|
if(argc>2)
|
|
|
|
arg2=argv[2];
|
|
|
|
|
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 07:11:16 -05:00
|
|
|
|
2003-07-04 12:37:16 -04:00
|
|
|
#ifdef CURLDEBUG
|
2002-12-12 07:11:16 -05:00
|
|
|
curl_memdebug("memdump");
|
2002-12-12 08:40:16 -05:00
|
|
|
#endif
|
|
|
|
return test(URL);
|
|
|
|
}
|