]>
git.cameronkatri.com Git - mandoc.git/blob - man.h
1 /* $Id: man.h,v 1.31 2010/05/15 20:51:40 kristaps Exp $ */
3 * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
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.
84 struct man_node
*parent
;
85 struct man_node
*child
;
86 struct man_node
*next
;
87 struct man_node
*prev
;
93 #define MAN_VALID (1 << 0)
94 #define MAN_ACTED (1 << 1)
95 #define MAN_EOS (1 << 2)
98 struct man_node
*head
;
99 struct man_node
*body
;
102 #define MAN_IGN_MACRO (1 << 0)
103 #define MAN_IGN_ESCAPE (1 << 2)
105 extern const char *const *man_macronames
;
108 int (*man_warn
)(void *, int, int, const char *);
109 int (*man_err
)(void *, int, int, const char *);
116 void man_free(struct man
*);
117 struct man
*man_alloc(void *, int, const struct man_cb
*);
118 void man_reset(struct man
*);
119 int man_parseln(struct man
*, int, char *buf
);
120 int man_endparse(struct man
*);
122 const struct man_node
*man_node(const struct man
*);
123 const struct man_meta
*man_meta(const struct man
*);