Colored debugging, some code cleaning.

FossilOrigin-Name: 23a60b9297d5719fa502b2163680fa1af8bc0201cb777771dc30de045f84b341
This commit is contained in:
7u83@mail.ru
2015-04-12 08:19:02 +00:00
parent bc2fe5d20b
commit cd59b647cd
37 changed files with 420 additions and 239 deletions

View File

@ -40,7 +40,15 @@
* Defines the structure of an AVL Node.
*/
struct avlnode {
void *data;
union {
void *data;
uint8_t ubyte;
uint16_t uword;
uint32_t udword;
int8_t byte;
int16_t word;
int32_t dword;
};
struct avlnode *left;
struct avlnode *right;
int bal;