first commit

This commit is contained in:
2019-05-31 11:26:35 -04:00
commit c403ba19f7
5075 changed files with 965209 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef __storeface_list_h__
#define __storeface_list_h__
typedef struct _list
{
char * text;
struct _list * next;
} TList;
void DestroyList( TList * top );
TList * Add( TList * list, char * text, long size );
TList * AddF( TList * list, char * format, ... );
#endif