! \fn ILibCreateStack(void **TheStack) \brief Creates an empty Stack \par This module uses a void* that is preinitialized to NULL, eg: void *stack = NULL; ILibCreateStack(&stack); \param TheStack A void* to use for the stack. Simply pass in a void* by reference */
| 2706 | \param TheStack A void* to use for the stack. Simply pass in a void* by reference |
| 2707 | */ |
| 2708 | void ILibCreateStack(void **TheStack) |
| 2709 | { |
| 2710 | *TheStack = NULL; |
| 2711 | } |
| 2712 | |
| 2713 | /*! \fn ILibPushStack(void **TheStack, void *data) |
| 2714 | \brief Push an item onto the stack |
no outgoing calls
no test coverage detected