diff options
Diffstat (limited to 'src/list.h')
-rw-r--r-- | src/list.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/list.h b/src/list.h index 4ae32160a..14f7f396b 100644 --- a/src/list.h +++ b/src/list.h @@ -69,6 +69,9 @@ List * makeList(ListFreeDataFunc * freeDataFunc); */ int insertInList(List * list,char * key,void * data); +int insertInListBeforeNode(List * list, ListNode * beforeNode, char * key, + void * data); + int insertInListWithoutKey(List * list,void * data); /* deletes the first node in the list with the key _key_ |