liblash

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

lash_tree_dump.h (244B)


      1 #include "lash_tree.h"
      2 
      3 #ifdef __cplusplus 
      4 extern "C" {
      5 #endif
      6 void lash_treeDump(lash_tree_t *tree, char *comment);
      7 int lash_treeDumpInit(unsigned int count);
      8 int lash_treeDumpAdd(lash_tree_t *tree, char *name);
      9 
     10 #ifdef __cplusplus 
     11 }
     12 #endif