diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-06-09 23:50:14 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-06-09 23:50:14 +0300 |
| commit | da8eeb7695a4803d1d45c8c26c05a51fb1ba1e55 (patch) | |
| tree | 85323057da02893e351426c60f2c5cfd5603b428 /include/apos/sp_tree.h | |
| parent | e30cd339e271b0d16dbecf6c521fa06c3a05e3f1 (diff) | |
| download | kmi-da8eeb7695a4803d1d45c8c26c05a51fb1ba1e55.tar.gz kmi-da8eeb7695a4803d1d45c8c26c05a51fb1ba1e55.zip | |
continue documentation
Diffstat (limited to 'include/apos/sp_tree.h')
| -rw-r--r-- | include/apos/sp_tree.h | 12 |
1 files changed, 6 insertions, 6 deletions
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)) |
