b1491b9d02
From http://ftp.vim.org/ftp/ibiblio/distributions/amigolinux/download/DockApps/wmthemech-0.3/wmThemeCh-0.3.tar.bz2
13 lines
268 B
C
13 lines
268 B
C
#ifndef STRINGLIST_H
|
|
#define STRINGLIST_H
|
|
|
|
typedef struct string_list_t LIST;
|
|
|
|
LIST * create_list ();
|
|
void delete_list (LIST *);
|
|
int get_item (LIST *, unsigned int index);
|
|
int add_item (LIST *, unsigned int);
|
|
int add_list (LIST *, LIST *);
|
|
|
|
#endif
|