diff options
author | Ian C <ianc@noddybox.co.uk> | 2024-12-26 19:05:07 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2024-12-26 19:05:07 +0000 |
commit | aa33cb940bb31c74903fb7dc26e5d2f264064911 (patch) | |
tree | b9c5603ad71080b4f23a6b0473b33160e039f058 /test.c | |
parent | 80b1b51911e8c4221e918b50039caf7533751e4c (diff) |
Dev check in. Added tester.
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; +} |