|
| StackData * | pData |
| | The container private information. More...
|
| |
| int32_t(* | push )(struct _Stack *, Item) |
| | Insert an item to the top of the stack. More...
|
| |
| int32_t(* | top )(struct _Stack *, Item *) |
| | Retrieve item from the top of the stack. More...
|
| |
| int32_t(* | pop )(struct _Stack *) |
| | Delete item from the top of the stack. More...
|
| |
| int32_t(* | size )(struct _Stack *) |
| | Return the number of stored items. More...
|
| |
| int32_t(* | set_destroy )(struct _Stack *, void(*)(Item)) |
| | Set the custom item resource clean method. More...
|
| |
The implementation for stack.
Definition at line 14 of file stack.h.