mirror of
https://github.com/zeldaret/tp
synced 2026-05-24 07:11:06 -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>
13 lines
354 B
C
13 lines
354 B
C
|
|
#ifndef SCOMPONENT_C_TREE_ITER_H_
|
|
#define SCOMPONENT_C_TREE_ITER_H_
|
|
|
|
#include "SComponent/c_node_iter.h"
|
|
#include "SComponent/c_tree.h"
|
|
#include "global.h"
|
|
|
|
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);
|
|
|
|
#endif
|