1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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);
}
|