diff options
author | Linus Nordberg <linus@nordberg.se> | 2013-08-28 13:48:49 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2013-08-28 13:48:49 +0200 |
commit | 5e51ef72473c04b43e9494dca95338ce60f98c65 (patch) | |
tree | 8c43d203eece413290609bd3958874ac2dab7c52 /list.h | |
parent | 0c80ef364c03dfe35d4e3231ad216ca1ad7063cf (diff) |
WIP: Fix the Proxy-State issue.proxy-state
Diffstat (limited to 'list.h')
-rw-r--r-- | list.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -23,6 +23,9 @@ struct list *list_create(); /* frees all memory associated with the list */ void list_destroy(struct list *list); +/* frees memory allocated for the list itself */ +void list_free(struct list *list); + /* appends entry to list; returns 1 if ok, 0 if malloc fails */ int list_push(struct list *list, void *data); |