Files
WrenchBoradWeb/wrenchboard/src/include/list.h
T
2019-05-31 11:26:35 -04:00

22 lines
293 B
C

#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