diff options
Diffstat (limited to 'src/list.h')
-rw-r--r-- | src/list.h | 19 |
1 files changed, 8 insertions, 11 deletions
@@ -49,7 +49,6 @@ in this Software without prior written authorization from The Open Group. /** OR PERFORMANCE OF THIS SOFTWARE. **/ /*****************************************************************************/ - /********************************************************************** * * TWM list handling external definitions @@ -67,15 +66,13 @@ in this Software without prior written authorization from The Open Group. typedef struct name_list_struct name_list; -extern void AddToList ( name_list **list_head, char *name, char *ptr ); -extern void FreeList ( name_list **list ); - -extern int GetColorFromList ( name_list *list_head, const char *name, - XClassHint *class, Pixel *ptr ); -extern char * LookInList ( name_list *list_head, const char *name, - XClassHint *class ); -extern char * LookInNameList ( name_list *list_head, const char *name ); - +extern void AddToList(name_list ** list_head, char *name, char *ptr); +extern void FreeList(name_list ** list); -#endif /* _LIST_ */ +extern int GetColorFromList(name_list * list_head, const char *name, + XClassHint *class, Pixel *ptr); +extern char *LookInList(name_list * list_head, const char *name, + XClassHint *class); +extern char *LookInNameList(name_list * list_head, const char *name); +#endif /* _LIST_ */ |