mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-10 21:55:11 +01:00
Added
This commit is contained in:
parent
86e66fb0a6
commit
a45b99e86c
18
Src/strings.h
Normal file
18
Src/strings.h
Normal 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);
|
||||||
|
/************************************************************/
|
||||||
|
|
Loading…
Reference in New Issue
Block a user