]>
git.cameronkatri.com Git - mandoc.git/blob - man.h
1 /* $Id: man.h,v 1.8 2009/04/02 06:51:44 kristaps Exp $ */
3 * Copyright (c) 2009 Kristaps Dzonsons <kristaps@openbsd.org>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the
7 * above copyright notice and this permission notice appear in all
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
11 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
12 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
13 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
14 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
15 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
16 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
64 struct man_node
*parent
;
65 struct man_node
*child
;
66 struct man_node
*next
;
67 struct man_node
*prev
;
72 #define MAN_VALID (1 << 0)
73 #define MAN_ACTED (1 << 1)
78 #define MAN_IGN_MACRO (1 << 0) /* Ignore unknown macros. */
80 extern const char *const *man_macronames
;
83 int (*man_warn
)(void *, int, int, const char *);
84 int (*man_err
)(void *, int, int, const char *);
91 void man_free(struct man
*);
92 struct man
*man_alloc(void *, int, const struct man_cb
*);
93 void man_reset(struct man
*);
94 int man_parseln(struct man
*, int, char *buf
);
95 int man_endparse(struct man
*);
96 int man_valid_post(struct man
*);
98 const struct man_node
*man_node(const struct man
*);
99 const struct man_meta
*man_meta(const struct man
*);