~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/my_tree.h

  • Committer: Brian Aker
  • Date: 2008-07-13 18:27:33 UTC
  • Revision ID: brian@tangent.org-20080713182733-3u1et5nrmofi8a8n
my_bool cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
  qsort_cmp2 compare;
56
56
  void *custom_arg;
57
57
  MEM_ROOT mem_root;
58
 
  my_bool with_delete;
 
58
  bool with_delete;
59
59
  tree_element_free free;
60
60
  uint flag;
61
61
} TREE;
62
62
 
63
63
        /* Functions on whole tree */
64
64
void init_tree(TREE *tree, ulong default_alloc_size, ulong memory_limit,
65
 
               int size, qsort_cmp2 compare, my_bool with_delete,
 
65
               int size, qsort_cmp2 compare, bool with_delete,
66
66
               tree_element_free free_element, void *custom_arg);
67
67
void delete_tree(TREE*);
68
68
void reset_tree(TREE*);