wmcliphist: Fix a typo in the Makefile
[dockapps.git] / wmthemech / src / stringlist.h
blob6523071f51c3c949cf87b10ab4d61f388466a997
1 #ifndef STRINGLIST_H
2 #define STRINGLIST_H
4 typedef struct string_list_t LIST;
6 LIST * create_list ();
7 void delete_list (LIST *);
8 int get_item (LIST *, unsigned int index);
9 int add_item (LIST *, unsigned int);
10 int add_list (LIST *, LIST *);
12 #endif