32
32
extern LIST *list_cons(void *data,LIST *root);
33
33
extern LIST *list_reverse(LIST *root);
34
34
extern void list_free(LIST *root,unsigned int free_data);
36
35
extern int list_walk(LIST *,list_walk_action action,unsigned char * argument);
38
37
#define list_rest(a) ((a)->next)