~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_tree.h

  • Committer: Brian Aker
  • Date: 2009-10-12 06:15:02 UTC
  • mfrom: (1165.1.178 static-functions)
  • Revision ID: brian@gaz-20091012061502-cds4m0cya7ow8sj7
Merge Stewart

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
/* Functions on leafs */
78
78
TREE_ELEMENT *tree_insert(TREE *tree,void *key, uint32_t key_size,
79
79
                          void *custom_arg);
80
 
void *tree_search(TREE *tree, void *key, void *custom_arg);
81
80
int tree_walk(TREE *tree,tree_walk_action action,
82
81
              void *argument, TREE_WALK visit);
83
82
int tree_delete(TREE *tree, void *key, uint32_t key_size, void *custom_arg);