]> git.cameronkatri.com Git - mandoc.git/blob - mandoc.h
Add -Owidth=width option to mandoc -Tascii. Asked for by joerg@ about a
[mandoc.git] / mandoc.h
1 /* $Id: mandoc.h,v 1.10 2010/06/03 13:44:36 kristaps Exp $ */
2 /*
3 * Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv>
4 *
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.
8 *
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.
16 */
17 #ifndef MANDOC_H
18 #define MANDOC_H
19
20 #define ASCII_NBRSP 31 /* non-breaking space */
21 #define ASCII_HYPH 30 /* breakable hyphen */
22
23
24 __BEGIN_DECLS
25
26 enum mandocerr {
27 MANDOCERR_OK,
28 MANDOCERR_UPPERCASE, /* text should be uppercase */
29 MANDOCERR_SECOOO, /* sections out of conventional order */
30 MANDOCERR_SECREP, /* section name repeats */
31 MANDOCERR_PROLOGOOO, /* out of order prologue */
32 MANDOCERR_PROLOGREP, /* repeated prologue entry */
33 MANDOCERR_LISTFIRST, /* list type must come first */
34 MANDOCERR_BADSTANDARD, /* bad standard */
35 MANDOCERR_BADLIB, /* bad library */
36 MANDOCERR_BADESCAPE, /* bad escape sequence */
37 MANDOCERR_BADQUOTE, /* unterminated quoted string */
38 MANDOCERR_NOWIDTHARG, /* argument requires the width argument */
39 MANDOCERR_WIDTHARG, /* superfluous width argument */
40 MANDOCERR_BADDATE, /* bad date argument */
41 MANDOCERR_BADWIDTH, /* bad width argument */
42 MANDOCERR_BADMSEC, /* unknown manual section */
43 MANDOCERR_SECMSEC, /* section not in conventional manual section */
44 MANDOCERR_EOLNSPACE, /* end of line whitespace */
45 MANDOCERR_SCOPEEXIT, /* scope open on exit */
46 #define MANDOCERR_WARNING MANDOCERR_SCOPEEXIT
47
48 MANDOCERR_NAMESECFIRST, /* NAME section must come first */
49 MANDOCERR_BADBOOL, /* bad Boolean value */
50 MANDOCERR_CHILD, /* child violates parent syntax */
51 MANDOCERR_BADATT, /* bad AT&T symbol */
52 MANDOCERR_LISTREP, /* list type repeated */
53 MANDOCERR_DISPREP, /* display type repeated */
54 MANDOCERR_ARGVREP, /* argument repeated */
55 MANDOCERR_NONAME, /* manual name not yet set */
56 MANDOCERR_MACROOBS, /* obsolete macro ignored */
57 MANDOCERR_MACROEMPTY, /* empty macro ignored */
58 MANDOCERR_BADBODY, /* macro not allowed in body */
59 MANDOCERR_BADPROLOG, /* macro not allowed in prologue */
60 MANDOCERR_BADCHAR, /* bad character */
61 MANDOCERR_BADNAMESEC, /* bad NAME section contents */
62 MANDOCERR_NOBLANKLN, /* no blank lines */
63 MANDOCERR_NOTEXT, /* no text in this context */
64 MANDOCERR_BADCOMMENT, /* bad comment style */
65 MANDOCERR_MACRO, /* unknown macro will be lost */
66 MANDOCERR_LINESCOPE, /* line scope broken */
67 MANDOCERR_SCOPE, /* scope broken */
68 MANDOCERR_ARGCOUNT, /* argument count wrong */
69 MANDOCERR_NOSCOPE, /* request scope close w/none open */
70 MANDOCERR_SCOPEREP, /* scope already open */
71 /* FIXME: merge following with MANDOCERR_ARGCOUNT */
72 MANDOCERR_NOARGS, /* macro requires line argument(s) */
73 MANDOCERR_NOBODY, /* macro requires body argument(s) */
74 MANDOCERR_NOARGV, /* macro requires argument(s) */
75 MANDOCERR_NOTITLE, /* no title in document */
76 MANDOCERR_LISTTYPE, /* missing list type */
77 MANDOCERR_ARGSLOST, /* line argument(s) will be lost */
78 MANDOCERR_BODYLOST, /* body argument(s) will be lost */
79 #define MANDOCERR_ERROR MANDOCERR_BODYLOST
80
81 MANDOCERR_COLUMNS, /* column syntax is inconsistent */
82 /* FIXME: this should be a MANDOCERR_ERROR */
83 MANDOCERR_FONTTYPE, /* missing font type */
84 /* FIXME: this should be a MANDOCERR_ERROR */
85 MANDOCERR_DISPTYPE, /* missing display type */
86 /* FIXME: this should be a MANDOCERR_ERROR */
87 MANDOCERR_NESTEDDISP, /* displays may not be nested */
88 MANDOCERR_SYNTNOSCOPE, /* request scope close w/none open */
89 MANDOCERR_SYNTSCOPE, /* scope broken, syntax violated */
90 MANDOCERR_SYNTLINESCOPE, /* line scope broken, syntax violated */
91 MANDOCERR_SYNTARGVCOUNT, /* argument count wrong, violates syntax */
92 MANDOCERR_SYNTCHILD, /* child violates parent syntax */
93 MANDOCERR_SYNTARGCOUNT, /* argument count wrong, violates syntax */
94 MANDOCERR_NODOCBODY, /* no document body */
95 MANDOCERR_NODOCPROLOG, /* no document prologue */
96 MANDOCERR_UTSNAME, /* utsname() system call failed */
97 MANDOCERR_MEM, /* memory exhausted */
98 #define MANDOCERR_FATAL MANDOCERR_MEM
99
100 MANDOCERR_MAX
101 };
102
103 typedef int (*mandocmsg)(enum mandocerr,
104 void *, int, int, const char *);
105
106 __END_DECLS
107
108 #endif /*!MANDOC_H*/