mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
set up arg2 to point to argv[2] to be used at will by programs
This commit is contained in:
parent
13722f536e
commit
4938991ab8
@ -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);
|
||||
|
@ -1,3 +1,5 @@
|
||||
#include <curl.h>
|
||||
#include <stdio.h>
|
||||
|
||||
extern char *arg2; /* set by first.c to the argv[2] or NULL */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user