This commit is contained in:
simon.kagstrom 2009-04-16 19:33:39 +00:00
parent 86e66fb0a6
commit a45b99e86c

18
Src/strings.h Normal file
View File

@ -0,0 +1,18 @@
struct _S_LIST
{
int Elements;
char **List;
int Sorted;
};
typedef struct _S_LIST S_List;
#define S_SORTED 1
#define S_UNSORTED 0
/************************************************************/
extern S_List* S_CreateList(int Sorted);
extern int S_AddToList(S_List *List, char *String);
extern void S_DestroyList(S_List *List);
/************************************************************/