|
design_pattern_for_c
V 1.00
|
Utility list API for design pattern. More...

Go to the source code of this file.
Data Structures | |
| struct | dputil_list_data_t |
| ! More... | |
| struct | dputil_list_t |
Typedefs | |
List Structure | |
| typedef struct dputil_list_data_t * | DPUtilListData |
| Typedef class DPUtilListData, member is defined in struct dputil_list_data_t. More... | |
| typedef struct dputil_list_t * | DPUtilList |
Functions | |
List API | |
| void | dputil_list_push (DPUtilList this, DPUtilListData data) |
| list push More... | |
| void | dputil_list_insert (DPUtilList this, DPUtilListData prev, DPUtilListData data) |
| list insert to point More... | |
| void | dputil_list_pull (DPUtilList this, DPUtilListData data) |
| list pull More... | |
| DPUtilListData | dputil_list_pop (DPUtilList this) |
| list pop More... | |
Utility list API for design pattern.
Definition in file dp_list.h.
| typedef struct dputil_list_t* DPUtilList |
| typedef struct dputil_list_data_t* DPUtilListData |
Typedef class DPUtilListData, member is defined in struct dputil_list_data_t.
| void dputil_list_insert | ( | DPUtilList | this, |
| DPUtilListData | prev, | ||
| DPUtilListData | data | ||
| ) |
| DPUtilListData dputil_list_pop | ( | DPUtilList | this | ) |
| void dputil_list_pull | ( | DPUtilList | this, |
| DPUtilListData | data | ||
| ) |
| void dputil_list_push | ( | DPUtilList | this, |
| DPUtilListData | data | ||
| ) |