Files
tp/include/SComponent/c_tree_iter.h
T

13 lines
354 B
C
Raw Normal View History

2020-11-30 14:26:55 -08:00
#ifndef SCOMPONENT_C_TREE_ITER_H_
#define SCOMPONENT_C_TREE_ITER_H_
2020-11-30 14:26:55 -08:00
#include "SComponent/c_node_iter.h"
2020-12-26 11:31:49 -05:00
#include "SComponent/c_tree.h"
2020-12-31 21:12:29 +01:00
#include "global.h"
2020-11-30 14:26:55 -08:00
2020-12-26 11:31:49 -05:00
int cTrIt_Method(node_lists_tree_class* pTree, cNdIt_MethodFunc pJudgeFunc, void* pUserData);
void* cTrIt_Judge(node_lists_tree_class* pTree, cNdIt_JudgeFunc pJudgeFunc, void* pUserData);
2020-11-30 14:26:55 -08:00
#endif