Lines Matching defs:man_node
81 struct man_node {
82 struct man_node *parent; /* parent AST node */
83 struct man_node *child; /* first child AST node */
84 struct man_node *next; /* sibling AST node */
85 struct man_node *prev; /* prior sibling AST node */
96 struct man_node *head; /* BLOCK node HEAD ptr */
97 struct man_node *tail; /* BLOCK node TAIL ptr */
98 struct man_node *body; /* BLOCK node BODY ptr */
111 const struct man_node *man_node(const struct man *);
114 void man_deroff(char **, const struct man_node *);