/* Public domain. */ #ifndef AVLNODE_H #define AVLNODE_H typedef struct avlnode avlnode, *avlnode_ref ; struct avlnode { unsigned int data ; unsigned int left ; unsigned int right ; signed char balance : 2 ; } ; #endif