2021-03-28 22:49:05 +02:00
|
|
|
#ifndef C_LIST_ITER_H
|
|
|
|
|
#define C_LIST_ITER_H
|
|
|
|
|
|
2021-03-30 02:45:32 +02:00
|
|
|
#include "SSystem/SComponent/c_node_iter.h"
|
2021-04-08 16:01:29 +02:00
|
|
|
#include "dolphin/types.h"
|
2021-03-30 02:45:32 +02:00
|
|
|
|
2023-05-12 12:10:14 -07:00
|
|
|
typedef struct node_list_class node_list_class;
|
|
|
|
|
|
2021-03-30 02:45:32 +02:00
|
|
|
int cLsIt_Method(node_list_class* pList, cNdIt_MethodFunc pMethod, void* pUserData);
|
|
|
|
|
void* cLsIt_Judge(node_list_class* pList, cNdIt_JudgeFunc pJudge, void* pUserData);
|
2021-03-28 22:49:05 +02:00
|
|
|
|
|
|
|
|
#endif /* C_LIST_ITER_H */
|