Functions | |
Scope restricted to file | |
int | freeListNode (ListNode *node, LinkedList *list) |
Free list node. | |
ListNode * | CreateListNode (void *item, LinkedList *list) |
Dynamically creates a list node. | |
int anonymous_namespace{LinkedList.cpp}::freeListNode | ( | ListNode * | node, |
LinkedList * | list | ||
) |
Free list node.
Definition at line 60 of file LinkedList.cpp.
ListNode * anonymous_namespace{LinkedList.cpp}::CreateListNode | ( | void * | item, |
LinkedList * | list | ||
) |
Dynamically creates a list node.
[in] | item | the item to store. |
[in] | list | The list to add it to. |
Definition at line 73 of file LinkedList.cpp.