piler/src/list.h

18 lines
321 B
C
Raw Normal View History

2011-11-14 15:57:52 +01:00
/*
* list.h, SJ
*/
#ifndef _LIST_H
#define _LIST_H
#include "defs.h"
2011-11-16 14:47:47 +01:00
int append_list(struct list **list, char *p);
struct list *create_list_item(char *s);
int is_string_on_list(struct list *list, char *s);
int is_item_on_string(struct list *list, char *s);
void free_list(struct list *list);
2011-11-14 15:57:52 +01:00
#endif /* _LIST_H */