diff options
author | George Abbott <george@gabbott.dev> | 2023-12-25 22:12:43 +0000 |
---|---|---|
committer | George Abbott <george@gabbott.dev> | 2023-12-25 22:12:43 +0000 |
commit | 6d81ea3caf2bbb2c46192083022dd57d35f5be95 (patch) | |
tree | 9658090285836683ccbbd745380ac201b1840fbd /test.c | |
parent | e88dbc79302eeba614488c9c5cbc6b00fe66df4e (diff) |
Diffstat (limited to 'test.c')
-rw-r--r-- | test.c | 48 |
1 files changed, 48 insertions, 0 deletions
@@ -0,0 +1,48 @@ +#include "strarr.h" +#include <stdio.h> + +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); +} + |