mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 23:05:36 -04:00
80ba3d9fd2
* checkpoint * checkpoint * rename f_pc * checkpoint * small symbol rename and fix some fpc symbols * remove unneeded entries from ldscript * simplify ok check, update docker container Co-authored-by: Pheenoh <pheenoh@gmail.com>
21 lines
513 B
C
21 lines
513 B
C
|
|
#ifndef SCOMPONENT_C_LIST_H_
|
|
#define SCOMPONENT_C_LIST_H_
|
|
|
|
#include "SComponent/c_node.h"
|
|
|
|
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
|