]> git.cameronkatri.com Git - mandoc.git/blob - private.h
*** empty log message ***
[mandoc.git] / private.h
1 /* $Id: private.h,v 1.53 2009/01/03 22:10:22 kristaps Exp $ */
2 /*
3 * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
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
7 * above copyright notice and this permission notice appear in all
8 * copies.
9 *
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.
18 */
19 #ifndef PRIVATE_H
20 #define PRIVATE_H
21
22 #include "mdoc.h"
23
24 enum mdoc_next {
25 MDOC_NEXT_SIBLING = 0,
26 MDOC_NEXT_CHILD
27 };
28
29 struct mdoc {
30 void *data;
31 struct mdoc_cb cb;
32 void *htab;
33 int flags;
34 enum mdoc_next next;
35 struct mdoc_node *last;
36 struct mdoc_node *first;
37 struct mdoc_meta meta;
38 enum mdoc_sec sec_lastn;
39 enum mdoc_sec sec_last;
40 };
41
42 struct mdoc_macro {
43 int (*fp)(struct mdoc *, int, int, int *, char *);
44 int flags;
45 #define MDOC_CALLABLE (1 << 0)
46 #define MDOC_EXPLICIT (1 << 1)
47 #define MDOC_QUOTABLE (1 << 2)
48 #define MDOC_PROLOGUE (1 << 3)
49 };
50
51 extern const struct mdoc_macro *const mdoc_macros;
52
53 #define MACRO_PROT_ARGS struct mdoc *mdoc, int tok, \
54 int ppos, int *pos, char *buf
55
56 __BEGIN_DECLS
57
58 int mdoc_err(struct mdoc *, int, int, enum mdoc_err);
59 int mdoc_warn(struct mdoc *, int, int, enum mdoc_warn);
60 void mdoc_msg(struct mdoc *, int, const char *, ...);
61 int mdoc_macro(struct mdoc *, int, int, int *, char *);
62 int mdoc_find(const struct mdoc *, const char *);
63 void mdoc_word_alloc(struct mdoc *, int, const char *);
64 void mdoc_elem_alloc(struct mdoc *, int, int,
65 size_t, const struct mdoc_arg *);
66 void mdoc_block_alloc(struct mdoc *, int, int,
67 size_t, const struct mdoc_arg *);
68 void mdoc_head_alloc(struct mdoc *, int, int);
69 void mdoc_body_alloc(struct mdoc *, int, int);
70 void mdoc_node_free(struct mdoc_node *);
71 void mdoc_sibling(struct mdoc *, int, struct mdoc_node **,
72 struct mdoc_node **, struct mdoc_node *);
73 void *mdoc_tokhash_alloc(void);
74 int mdoc_tokhash_find(const void *, const char *);
75 void mdoc_tokhash_free(void *);
76 int mdoc_isdelim(const char *);
77 int mdoc_iscdelim(char);
78 enum mdoc_sec mdoc_atosec(size_t, const char **);
79 enum mdoc_msec mdoc_atomsec(const char *);
80 enum mdoc_vol mdoc_atovol(const char *);
81 enum mdoc_arch mdoc_atoarch(const char *);
82 enum mdoc_att mdoc_atoatt(const char *);
83 time_t mdoc_atotime(const char *);
84
85 int mdoc_valid_pre(struct mdoc *, int, int,
86 int, const struct mdoc_arg *);
87 int mdoc_valid_post(struct mdoc *, int, int);
88
89 int mdoc_argv(struct mdoc *, int,
90 struct mdoc_arg *, int *, char *);
91 #define ARGV_ERROR (-1)
92 #define ARGV_EOLN (0)
93 #define ARGV_ARG (1)
94 #define ARGV_WORD (2)
95 void mdoc_argv_free(int, struct mdoc_arg *);
96 int mdoc_args(struct mdoc *, int,
97 int *, char *, int, char **);
98 #define ARGS_ERROR (-1)
99 #define ARGS_EOLN (0)
100 #define ARGS_WORD (1)
101 #define ARGS_PUNCT (2)
102
103 #define ARGS_QUOTED (1 << 0)
104 #define ARGS_DELIM (1 << 1)
105
106 int xstrlcat(char *, const char *, size_t);
107 int xstrlcpy(char *, const char *, size_t);
108 int xstrcmp(const char *, const char *);
109 void *xcalloc(size_t, size_t);
110 char *xstrdup(const char *);
111
112 int macro_obsolete(MACRO_PROT_ARGS);
113 int macro_constant_quoted(MACRO_PROT_ARGS);
114 int macro_constant_obsolete(MACRO_PROT_ARGS);
115 int macro_constant_argv(MACRO_PROT_ARGS);
116 int macro_constant(MACRO_PROT_ARGS);
117 int macro_constant_delimited(MACRO_PROT_ARGS);
118 int macro_text(MACRO_PROT_ARGS);
119 int macro_scoped(MACRO_PROT_ARGS);
120 int macro_close_explicit(MACRO_PROT_ARGS);
121 int macro_scoped_line(MACRO_PROT_ARGS);
122 int macro_scoped_pline(MACRO_PROT_ARGS);
123 int macro_prologue(MACRO_PROT_ARGS);
124
125 __END_DECLS
126
127 #endif /*!PRIVATE_H*/