]>
git.cameronkatri.com Git - mandoc.git/blob - man.h
1 /* $Id: man.h,v 1.46 2010/12/05 16:14:16 kristaps Exp $ */
3 * Copyright (c) 2009, 2010 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.
21 * What follows is a list of ALL possible macros.
62 * Type of a syntax node.
74 * Information from prologue.
77 char *msec
; /* `TH' section (1, 3p, etc.) */
78 time_t date
; /* `TH' normalised date */
79 char *rawdate
; /* raw `TH' date */
80 char *vol
; /* `TH' volume */
81 char *title
; /* `TH' title (e.g., FOO) */
82 char *source
; /* `TH' source (e.g., GNU) */
86 * Single node in tree-linked AST.
89 struct man_node
*parent
; /* parent AST node */
90 struct man_node
*child
; /* first child AST node */
91 struct man_node
*next
; /* sibling AST node */
92 struct man_node
*prev
; /* prior sibling AST node */
93 int nchild
; /* number children */
96 enum mant tok
; /* tok or MAN__MAX if none */
98 #define MAN_VALID (1 << 0) /* has been validated */
99 #define MAN_ACTED (1 << 1) /* has been acted upon */
100 #define MAN_EOS (1 << 2) /* at sentence boundary */
101 enum man_type type
; /* AST node type */
102 char *string
; /* TEXT node argument */
103 struct man_node
*head
; /* BLOCK node HEAD ptr */
104 struct man_node
*body
; /* BLOCK node BODY ptr */
108 * Names of macros. Index is enum mant. Indexing into this returns
109 * the normalised name, e.g., man_macronames[MAN_SH] -> "SH".
111 extern const char *const *man_macronames
;
117 void man_free(struct man
*);
118 struct man
*man_alloc(struct regset
*, void *, mandocmsg
);
119 void man_reset(struct man
*);
120 int man_parseln(struct man
*, int, char *, int);
121 int man_endparse(struct man
*);
123 const struct man_node
*man_node(const struct man
*);
124 const struct man_meta
*man_meta(const struct man
*);