string_list.h

changeset 27
95a958e3de88
parent 20
43725438ac50
equal deleted inserted replaced
26:853a1181884b 27:95a958e3de88
9 #define STRING_LIST_H_ 9 #define STRING_LIST_H_
10 10
11 #include "stdinc.h" 11 #include "stdinc.h"
12 12
13 typedef struct _string_list { 13 typedef struct _string_list {
14 int count; 14 size_t count;
15 char** items; 15 char** items;
16 } string_list_t; 16 } string_list_t;
17 17
18 #ifdef _cplusplus 18 #ifdef _cplusplus
19 extern "C" { 19 extern "C" {

mercurial