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 char *text_list_get( struct text_list *t, int i); 00007 int text_list_append( struct text_list *t, const char *item ); 00008 int text_list_size( struct text_list *t ); 00009 void text_list_delete( struct text_list *t ); 00010 00011 00012 #endif