diff --git a/Src/strings.h b/Src/strings.h new file mode 100644 index 0000000..7b4d7f8 --- /dev/null +++ b/Src/strings.h @@ -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); +/************************************************************/ +