Skip to content
Snippets Groups Projects
Commit 4938991a authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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

parent 13722f53
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
#include <curl.h>
#include <stdio.h>
extern char *arg2; /* set by first.c to the argv[2] or NULL */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment