text_list.h

00001 #ifndef TEXT_LIST_H
00002 #define TEXT_LIST_H
00003 
00004 struct text_list *text_list_create();
00005 struct text_list *text_list_load(const char *path);
00006 struct text_list *text_list_load_str(const char *inp_str);
00007 char *text_list_get(struct text_list *t, int i);
00008 int text_list_append(struct text_list *t, const char *item);
00009 int text_list_size(struct text_list *t);
00010 void text_list_set(struct text_list *t, const char *item, int i);
00011 void text_list_delete(struct text_list *t);
00012 
00013 #endif

Generated on 17 Sep 2019 for cctools by  doxygen 1.6.1