set up arg2 to point to argv[2] to be used at will by programs

This commit is contained in:
Daniel Stenberg 2002-12-13 16:22:57 +00:00
parent 13722f536e
commit 4938991ab8
2 changed files with 7 additions and 0 deletions

View File

@ -8,6 +8,8 @@ extern void curl_memdebug(const char *);
/* test is provided in the test code file */
CURLcode test(char *url);
char *arg2=NULL;
int main(int argc, char **argv)
{
char *URL;
@ -15,6 +17,9 @@ int main(int argc, char **argv)
fprintf(stderr, "Pass URL as argument please\n");
return 1;
}
if(argc>2)
arg2=argv[2];
URL = argv[1]; /* provide this to the rest */
fprintf(stderr, "URL: %s\n", URL);

View File

@ -1,3 +1,5 @@
#include <curl.h>
#include <stdio.h>
extern char *arg2; /* set by first.c to the argv[2] or NULL */