src/string_list.h

changeset 66
be2084398c37
parent 57
68018eac46c3
equal deleted inserted replaced
65:49fa681f3a7e 66:be2084398c37
27 #ifndef STRING_LIST_H_ 27 #ifndef STRING_LIST_H_
28 #define STRING_LIST_H_ 28 #define STRING_LIST_H_
29 29
30 #include "stdinc.h" 30 #include "stdinc.h"
31 31
32 typedef struct _string_list { 32 typedef struct string_list_s {
33 size_t count; 33 size_t count;
34 char** items; 34 char** items;
35 } string_list_t; 35 } string_list_t;
36 36
37 #ifdef _cplusplus 37 #ifdef _cplusplus

mercurial