diff options
Diffstat (limited to '')
-rw-r--r-- | src/list.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/list.h b/src/list.h index 9a2a07484..ed54a3b02 100644 --- a/src/list.h +++ b/src/list.h @@ -74,7 +74,7 @@ List * makeList(ListFreeDataFunc * freeDataFunc, int strdupKeys); ListNode * insertInList(List * list,char * key,void * data); ListNode * insertInListBeforeNode(List * list, ListNode * beforeNode, - char * key, void * data); + int pos, char * key, void * data); int insertInListWithoutKey(List * list,void * data); @@ -99,7 +99,7 @@ int findInList(List * list, char * key, void ** data); /* if _key_ is not found, *_node_ is assigned to the node before which the info would be found */ -int findNodeInList(List * list, char * key, ListNode ** node); +int findNodeInList(List * list, char * key, ListNode ** node, int * pos); /* frees memory malloc'd for list and its nodes * _list_ -> List to be free'd |