mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 06:41:59 +01:00
18 lines
321 B
C
18 lines
321 B
C
/*
|
|
* list.h, SJ
|
|
*/
|
|
|
|
#ifndef _LIST_H
|
|
#define _LIST_H
|
|
|
|
#include "defs.h"
|
|
|
|
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);
|
|
|
|
#endif /* _LIST_H */
|
|
|