From aa33cb940bb31c74903fb7dc26e5d2f264064911 Mon Sep 17 00:00:00 2001 From: Ian C Date: Thu, 26 Dec 2024 19:05:07 +0000 Subject: Dev check in. Added tester. --- test.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 test.c (limited to 'test.c') diff --git a/test.c b/test.c new file mode 100644 index 0000000..f5e4a37 --- /dev/null +++ b/test.c @@ -0,0 +1,17 @@ +#include +#include + +#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; +} -- cgit v1.2.3