mirror of
https://github.com/encounter/tp.git
synced 2026-03-30 11:40:53 -07:00
7fd7d0c1f3
* d_a_obj_carry work, SETUP_ACTOR macro * rm headers, add script * progress * macro rename, consistent spacing
21 lines
511 B
C
21 lines
511 B
C
#ifndef C_LIST_H
|
|
#define C_LIST_H
|
|
|
|
|
|
typedef struct node_class node_class;
|
|
|
|
typedef struct node_list_class {
|
|
node_class* mpHead;
|
|
node_class* mpTail;
|
|
int mSize;
|
|
} node_list_class;
|
|
|
|
void cLs_Init(node_list_class* pList);
|
|
int cLs_SingleCut(node_class* pNode);
|
|
int cLs_Addition(node_list_class* pList, node_class* pNode);
|
|
int cLs_Insert(node_list_class* pList, int idx, node_class* pNode);
|
|
node_class* cLs_GetFirst(node_list_class* pList);
|
|
void cLs_Create(node_list_class* pList);
|
|
|
|
#endif /* C_LIST_H */
|