From 747dc5e1c2468f432f1342a11fc5aa7722f04599 Mon Sep 17 00:00:00 2001 From: "7u83@mail.ru" <7u83@mail.ru@noemail.net> Date: Sun, 6 Mar 2016 10:07:49 +0000 Subject: [PATCH] Added comments. FossilOrigin-Name: aed38b36b4f76bf44e7af2cf877c6fed1026a8ef599e69b567316c960f59037a --- src/cw/mavl.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cw/mavl.h b/src/cw/mavl.h index dbf28f20..64c7b063 100644 --- a/src/cw/mavl.h +++ b/src/cw/mavl.h @@ -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; };