diff options
Diffstat (limited to 'test.c')
-rw-r--r-- | test.c | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +#include <stdlib.h> +#include <stdio.h> + +#include "wifi.h" + +int main(int argc, char *argv[]) +{ + int f; + + for(f = 1; f < argc; f++) + { + printf("URL = '%s'\n", argv[f]); + ConnectURL("GET", argv[f]); + } + + return EXIT_SUCCESS; +} |