Colored debugging, some code cleaning.
FossilOrigin-Name: 23a60b9297d5719fa502b2163680fa1af8bc0201cb777771dc30de045f84b341
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user