Home | History | Annotate | Download | only in stdlib

Lines Matching refs:action

95 trecurse(node *root, void (*action)(const void *, VISIT, int), int level)
98 (*action)(root, leaf, level);
100 (*action)(root, preorder, level);
102 trecurse(root->left, action, level + 1);
103 (*action)(root, postorder, level);
105 trecurse(root->right, action, level + 1);
106 (*action)(root, endorder, level);
112 twalk(const void *vroot, void (*action)(const void *, VISIT, int))
116 if (root != (node *)0 && action != (void (*)(const void *, VISIT, int))0)
117 trecurse(root, action, 0);