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 62 of file LinkedList.cpp.
Here is the call graph for this function:
Here is the caller graph for this function:| 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 75 of file LinkedList.cpp.
Here is the call graph for this function:
Here is the caller graph for this function: