diff options
Diffstat (limited to 'list.h')
-rw-r--r-- | list.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -93,6 +93,7 @@ void llist_appendn( struct List**, void*, struct ListNode* ); // get one element from list and erease it from list void* llist_pop( struct List* ); +void* llist_popf( struct List* );//pop first element of list //add at the end one element void llist_push( struct List*, void* ); |