mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-26 13:34:22 +01:00
19 lines
420 B
C
19 lines
420 B
C
|
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);
|
||
|
/************************************************************/
|
||
|
|