summaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2024-12-26 19:05:07 +0000
committerIan C <ianc@noddybox.co.uk>2024-12-26 19:05:07 +0000
commitaa33cb940bb31c74903fb7dc26e5d2f264064911 (patch)
treeb9c5603ad71080b4f23a6b0473b33160e039f058 /test.c
parent80b1b51911e8c4221e918b50039caf7533751e4c (diff)
Dev check in. Added tester.
Diffstat (limited to 'test.c')
-rw-r--r--test.c17
1 files changed, 17 insertions, 0 deletions
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 <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;
+}