]>
git.cameronkatri.com Git - mandoc.git/blob - man.h
1 /* $Id: man.h,v 1.58 2011/03/23 12:33:01 kristaps Exp $ */
3 * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
70 char *msec
; /* `TH' section (1, 3p, etc.) */
71 char *date
; /* `TH' normalised date */
72 char *vol
; /* `TH' volume */
73 char *title
; /* `TH' title (e.g., FOO) */
74 char *source
; /* `TH' source (e.g., GNU) */
78 struct man_node
*parent
; /* parent AST node */
79 struct man_node
*child
; /* first child AST node */
80 struct man_node
*next
; /* sibling AST node */
81 struct man_node
*prev
; /* prior sibling AST node */
82 int nchild
; /* number children */
85 enum mant tok
; /* tok or MAN__MAX if none */
87 #define MAN_VALID (1 << 0) /* has been validated */
88 #define MAN_EOS (1 << 2) /* at sentence boundary */
89 #define MAN_LINE (1 << 3) /* first macro/text on line */
90 enum man_type type
; /* AST node type */
91 char *string
; /* TEXT node argument */
92 struct man_node
*head
; /* BLOCK node HEAD ptr */
93 struct man_node
*tail
; /* BLOCK node TAIL ptr */
94 struct man_node
*body
; /* BLOCK node BODY ptr */
95 const struct tbl_span
*span
; /* TBL */
96 const struct eqn
*eqn
; /* EQN */
99 /* Names of macros. Index is enum mant. */
100 extern const char *const *man_macronames
;
106 const struct man_node
*man_node(const struct man
*);
107 const struct man_meta
*man_meta(const struct man
*);