]>
git.cameronkatri.com Git - mandoc.git/blob - libmdoc.h
1 /* $Id: libmdoc.h,v 1.37 2010/05/07 05:54:09 kristaps Exp $ */
3 * Copyright (c) 2008, 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.
23 MDOC_NEXT_SIBLING
= 0,
31 #define MDOC_HALT (1 << 0) /* Error in parse. Halt. */
32 #define MDOC_LITERAL (1 << 1) /* In a literal scope. */
33 #define MDOC_PBODY (1 << 2) /* In the document body. */
36 struct mdoc_node
*last
;
37 struct mdoc_node
*first
;
38 struct mdoc_meta meta
;
39 enum mdoc_sec lastnamed
;
40 enum mdoc_sec lastsec
;
100 #define MACRO_PROT_ARGS struct mdoc *m, enum mdoct tok, \
101 int line, int ppos, int *pos, char *buf
104 int (*fp
)(MACRO_PROT_ARGS
);
106 #define MDOC_CALLABLE (1 << 0)
107 #define MDOC_PARSED (1 << 1)
108 #define MDOC_EXPLICIT (1 << 2)
109 #define MDOC_PROLOGUE (1 << 3)
110 #define MDOC_IGNDELIM (1 << 4)
111 /* Reserved words in arguments treated as text. */
130 extern const struct mdoc_macro
*const mdoc_macros
;
134 #define mdoc_perr(m, l, p, t) \
135 mdoc_err((m), (l), (p), 1, (t))
136 #define mdoc_pwarn(m, l, p, t) \
137 mdoc_err((m), (l), (p), 0, (t))
138 #define mdoc_nerr(m, n, t) \
139 mdoc_err((m), (n)->line, (n)->pos, 1, (t))
140 #define mdoc_nwarn(m, n, t) \
141 mdoc_err((m), (n)->line, (n)->pos, 0, (t))
143 int mdoc_err(struct mdoc
*, int, int, int, enum merr
);
144 int mdoc_verr(struct mdoc
*, int, int, const char *, ...);
145 int mdoc_vwarn(struct mdoc
*, int, int, const char *, ...);
147 int mdoc_macro(MACRO_PROT_ARGS
);
148 int mdoc_word_alloc(struct mdoc
*,
149 int, int, const char *);
150 int mdoc_elem_alloc(struct mdoc
*, int, int,
151 enum mdoct
, struct mdoc_arg
*);
152 int mdoc_block_alloc(struct mdoc
*, int, int,
153 enum mdoct
, struct mdoc_arg
*);
154 int mdoc_head_alloc(struct mdoc
*, int, int, enum mdoct
);
155 int mdoc_tail_alloc(struct mdoc
*, int, int, enum mdoct
);
156 int mdoc_body_alloc(struct mdoc
*, int, int, enum mdoct
);
157 void mdoc_node_delete(struct mdoc
*, struct mdoc_node
*);
158 void mdoc_hash_init(void);
159 enum mdoct
mdoc_hash_find(const char *);
160 int mdoc_iscdelim(char);
161 int mdoc_isdelim(const char *);
162 size_t mdoc_isescape(const char *);
163 enum mdoc_sec
mdoc_atosec(const char *);
164 time_t mdoc_atotime(const char *);
166 size_t mdoc_macro2len(int);
167 const char *mdoc_a2att(const char *);
168 const char *mdoc_a2lib(const char *);
169 const char *mdoc_a2st(const char *);
170 const char *mdoc_a2arch(const char *);
171 const char *mdoc_a2vol(const char *);
172 const char *mdoc_a2msec(const char *);
173 int mdoc_valid_pre(struct mdoc
*,
174 const struct mdoc_node
*);
175 int mdoc_valid_post(struct mdoc
*);
176 int mdoc_action_pre(struct mdoc
*,
177 const struct mdoc_node
*);
178 int mdoc_action_post(struct mdoc
*);
179 enum margverr
mdoc_argv(struct mdoc
*, int, enum mdoct
,
180 struct mdoc_arg
**, int *, char *);
181 void mdoc_argv_free(struct mdoc_arg
*);
182 void mdoc_argn_free(struct mdoc_arg
*, int);
183 enum margserr
mdoc_args(struct mdoc
*, int,
184 int *, char *, enum mdoct
, char **);
185 enum margserr
mdoc_zargs(struct mdoc
*, int,
186 int *, char *, int, char **);
187 #define ARGS_DELIM (1 << 1) /* See args(). */
188 #define ARGS_TABSEP (1 << 2) /* See args(). */
189 #define ARGS_NOWARN (1 << 3) /* See args(). */
191 int mdoc_macroend(struct mdoc
*);
195 #endif /*!LIBMDOC_H*/