mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-27 23:45:55 -04:00
ce8319486b
* 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>
13 lines
335 B
C
13 lines
335 B
C
|
|
#ifndef SCOMPONENT_C_LIST_ITER_H_
|
|
#define SCOMPONENT_C_LIST_ITER_H_
|
|
|
|
#include "SComponent/c_list.h"
|
|
#include "SComponent/c_node_iter.h"
|
|
#include "global.h"
|
|
|
|
int cLsIt_Method(node_list_class* pList, cNdIt_MethodFunc pMethod, void* pUserData);
|
|
void* cLsIt_Judge(node_list_class* pList, cNdIt_JudgeFunc pJudge, void* pUserData);
|
|
|
|
#endif
|