1
0
Fork 0

Updated documentation-generating script, and added documentation for a tree node.

This commit is contained in:
wael 2021-09-06 18:06:17 +03:00
parent 6c165bb041
commit cc0b74cd04
1 changed files with 27 additions and 0 deletions

27
docs/nodes/tree_node.h.ms Normal file
View File

@ -0,0 +1,27 @@
.DA
.TL
tree_node.h
.AU
Wael Karram
.AB no
Documentation for tree_node.h
.AE
.ND
.PP
This header defines a tree node, with the prepoccessor variable TREE_NODE_H used as an include guard.
.br
Defines a single struct
.UL tree_node_t \0which
has the fields
.I "left" ,\0
.I "right" \0and
.I "data" ,
the former of which are two other node pointers, and the latter is a void pointer.
.br
It is of note that this header type-defines the aformentioned node as
.I "tree_node_t" .