Go to the source code of this file.
Typedefs | |
| typedef void * | quvi_llst_node_t |
| Linked list node handle. | |
Functions | |
| QUVIcode | quvi_llst_append (quvi_llst_node_t *llst, void *data) |
| Append new node to a linked list. | |
| size_t | quvi_llst_size (quvi_llst_node_t llst) |
| Return the size (number of nodes) in linked list. | |
| quvi_llst_node_t | quvi_llst_next (quvi_llst_node_t llst) |
| Return next linked node. | |
| void * | quvi_llst_data (quvi_llst_node_t node) |
| Return data of the linked list node. | |
| void | quvi_llst_free (quvi_llst_node_t *llst) |
| Release memory allocated by the linked list. | |
1.7.4