liblash

A bianry tree implementation used for game development from scratch
git clone git://holbrook.no/liblash.git
Log | Files | Refs | LICENSE

lash_tree2_dump.h (344B)


      1 #ifndef LASH_TREE_DUMP_H_
      2 #define LASH_TREE_DUMP_H_
      3 
      4 #include "liblash/lash_tree2.h"
      5 
      6 #ifdef __cplusplus 
      7 extern "C" {
      8 #endif
      9 void lash_treeDump(lash_tree_t *dumptree, char *comment);
     10 int lash_treeDumpInit(unsigned int count);
     11 int lash_treeDumpAdd(lash_tree_t *dumptree, char *name);
     12 
     13 #ifdef __cplusplus 
     14 }
     15 #endif
     16 
     17 
     18 #endif // LASH_TREE_DUMP_H_