Added comments.

FossilOrigin-Name: aed38b36b4f76bf44e7af2cf877c6fed1026a8ef599e69b567316c960f59037a
This commit is contained in:
7u83@mail.ru 2016-03-06 10:07:49 +00:00
parent e51d715b8b
commit 747dc5e1c2
1 changed files with 4 additions and 0 deletions

View File

@ -47,9 +47,13 @@
* Defines the structure of an AVL Node.
*/
struct mavlnode {
/** Pointer to data, thant belongs to the node */
void *data;
/** Pointer to left son*/
struct mavlnode *left;
/** Pointer to right son*/
struct mavlnode *right;
/** AVL balance */
int bal;
};