]>
git.cameronkatri.com Git - mandoc.git/blob - private.h
1 /* $Id: private.h,v 1.53 2009/01/03 22:10:22 kristaps Exp $ */
3 * Copyright (c) 2008 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
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.
25 MDOC_NEXT_SIBLING
= 0,
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
;
43 int (*fp
)(struct mdoc
*, int, int, int *, char *);
45 #define MDOC_CALLABLE (1 << 0)
46 #define MDOC_EXPLICIT (1 << 1)
47 #define MDOC_QUOTABLE (1 << 2)
48 #define MDOC_PROLOGUE (1 << 3)
51 extern const struct mdoc_macro
*const mdoc_macros
;
53 #define MACRO_PROT_ARGS struct mdoc *mdoc, int tok, \
54 int ppos, int *pos, char *buf
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 *);
85 int mdoc_valid_pre(struct mdoc
*, int, int,
86 int, const struct mdoc_arg
*);
87 int mdoc_valid_post(struct mdoc
*, int, int);
89 int mdoc_argv(struct mdoc
*, int,
90 struct mdoc_arg
*, int *, char *);
91 #define ARGV_ERROR (-1)
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)
100 #define ARGS_WORD (1)
101 #define ARGS_PUNCT (2)
103 #define ARGS_QUOTED (1 << 0)
104 #define ARGS_DELIM (1 << 1)
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 *);
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
);
127 #endif /*!PRIVATE_H*/