1 /* $Id: man.h,v 1.65 2014/06/20 23:02:31 schwarze Exp $ */
3 * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2014 Ingo Schwarze <schwarze@openbsd.org>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
77 char *msec
; /* `TH' section (1, 3p, etc.) */
78 char *date
; /* `TH' normalised date */
79 char *vol
; /* `TH' volume */
80 char *title
; /* `TH' title (e.g., FOO) */
81 char *source
; /* `TH' source (e.g., GNU) */
82 int hasbody
; /* document is not empty */
86 struct man_node
*parent
; /* parent AST node */
87 struct man_node
*child
; /* first child AST node */
88 struct man_node
*next
; /* sibling AST node */
89 struct man_node
*prev
; /* prior sibling AST node */
90 int nchild
; /* number children */
93 enum mant tok
; /* tok or MAN__MAX if none */
95 #define MAN_VALID (1 << 0) /* has been validated */
96 #define MAN_EOS (1 << 2) /* at sentence boundary */
97 #define MAN_LINE (1 << 3) /* first macro/text on line */
98 enum man_type type
; /* AST node type */
99 char *string
; /* TEXT node argument */
100 struct man_node
*head
; /* BLOCK node HEAD ptr */
101 struct man_node
*tail
; /* BLOCK node TAIL ptr */
102 struct man_node
*body
; /* BLOCK node BODY ptr */
103 const struct tbl_span
*span
; /* TBL */
104 const struct eqn
*eqn
; /* EQN */
107 /* Names of macros. Index is enum mant. */
108 extern const char *const *man_macronames
;
114 const struct man_node
*man_node(const struct man
*);
115 const struct man_meta
*man_meta(const struct man
*);
116 const struct mparse
*man_mparse(const struct man
*);
117 void man_deroff(char **, const struct man_node
*);