From da8eeb7695a4803d1d45c8c26c05a51fb1ba1e55 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Thu, 9 Jun 2022 23:50:14 +0300 Subject: continue documentation --- include/apos/sp_tree.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'include/apos/sp_tree.h') diff --git a/include/apos/sp_tree.h b/include/apos/sp_tree.h index a5fa2f8..8202033 100644 --- a/include/apos/sp_tree.h +++ b/include/apos/sp_tree.h @@ -21,7 +21,7 @@ * * @param n Node to read. * @return Left node of read node. - * @see sp_right(). + * \see sp_right(). */ #define sp_left(n) ((n)->left) @@ -30,7 +30,7 @@ * * @param n Node to read. * @return Right node of read node. - * @see sp_left(). + * \see sp_left(). */ #define sp_right(n) ((n)->right) @@ -41,7 +41,7 @@ * * @param n Node to read. * @return Parent of right node of read node. - * @see sp_lparen(). + * \see sp_lparen(). */ #define sp_rparen(n) (sp_right(n)->parent) @@ -50,7 +50,7 @@ * * @param n Node to read. * @return Parent of left node of read node. - * @see sp_rparen(). + * \see sp_rparen(). */ #define sp_lparen(n) (sp_left(n)->parent) @@ -67,7 +67,7 @@ * * @param n Node to read. * @return Grandparent of read node. - * @see sp_has_gparen(). + * \see sp_has_gparen(). */ #define sp_gparen(n) ((n)->parent->parent) @@ -75,7 +75,7 @@ * * @param n Node to read. * @return Non-zero if node has grandparent, \c 0 otherwise. - * @see sp_gparen(). + * \see sp_gparen(). */ #define sp_has_gparen(n) (sp_paren(n) && sp_gparen(n)) -- cgit v1.3