From 6d81ea3caf2bbb2c46192083022dd57d35f5be95 Mon Sep 17 00:00:00 2001 From: George Abbott Date: Mon, 25 Dec 2023 22:12:43 +0000 Subject: Added code thus far --- test.c | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 test.c (limited to 'test.c') diff --git a/test.c b/test.c new file mode 100644 index 0000000..0739642 --- /dev/null +++ b/test.c @@ -0,0 +1,48 @@ +#include "strarr.h" +#include + +int main() +{ + strarr sa; + strarr_init_from_str_split(&sa, "Hello\nWorld", '\n'); + int i; + char* p; + strarr_debug(&sa); + for (p = strarr_index(&sa, 0), i = 0; p != NULL; p = strarr_next(&sa, p), i++) { + printf("sa[%d] = %s\n", i, p); + } + + for (int i = 0; i <= 3; ++i) { + const char *c = strarr_index(&sa, i); + printf("*strarr_index(%d) = %s\n", i, c == NULL ? "nullptr" : c); + } + + strarr_free(&sa); + + /* Test initting empty and append */ + printf("\n\n---------- Second test w init_empty ---------------\n\n"); + strarr sa2; + strarr_init_empty(&sa2, 35); + printf("Before appending, after strarr_init_empty: \n"); + strarr_debug(&sa2); + printf("\n"); + + strarr_app(&sa2, "Hello"); + strarr_app(&sa2, "World"); + strarr_app(&sa2, "woogie boogie"); + printf("After strarr_app:\n"); + strarr_debug(&sa2); + + /* And the usual loop. */ + for (p = strarr_index(&sa2, 0), i = 0; p != NULL; p = strarr_next(&sa2, p), i++) { + printf("sa2[%d] = %s\n", i, p); + } + + for (int i = 0; i <= 3; ++i) { + const char *c = strarr_index(&sa2, i); + printf("*strarr_index(%d) = %s\n", i, c == NULL ? "nullptr" : c); + } + + strarr_free(&sa2); +} + -- cgit v1.2.1