|
doc
|
Structure for a stringlist. More...
#include <src/std/c_string.h>
Data Fields | |
| size_t | count |
| size_t | size |
| char ** | vector |
Structure for a stringlist.
Using a for loop you can access the strings saved in the vector.
c_strlist_t strlist; int i; for (i = 0; i < strlist->count; i++) { printf("value: %s", strlist->vector[i]; }
Definition at line 49 of file c_string.h.
| char** c_strlist_s::vector |
The string vector.
Definition at line 51 of file c_string.h.
1.7.3