Files
tp/include/SSystem/SComponent/c_list_iter.h
T
Pheenoh 7fd7d0c1f3 d_a_obj_carry work, SETUP_ACTOR macro, header cleanup (#1885)
* d_a_obj_carry work, SETUP_ACTOR macro

* rm headers, add script

* progress

* macro rename, consistent spacing
2023-08-16 12:07:52 -07:00

12 lines
336 B
C

#ifndef C_LIST_ITER_H
#define C_LIST_ITER_H
#include "SSystem/SComponent/c_node_iter.h"
typedef struct node_list_class node_list_class;
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 /* C_LIST_ITER_H */