]> git.cameronkatri.com Git - mandoc.git/blob - out.h
Remove `am', `ami', `de', `dei', and `.' from -man, as they're now in the roff prepro...
[mandoc.git] / out.h
1 /* $Id: out.h,v 1.10 2010/04/07 11:25:38 kristaps Exp $ */
2 /*
3 * Copyright (c) 2009 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 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 OUT_H
18 #define OUT_H
19
20 #define DATESIZ 24
21
22 __BEGIN_DECLS
23
24 enum roffscale {
25 SCALE_CM,
26 SCALE_IN,
27 SCALE_PC,
28 SCALE_PT,
29 SCALE_EM,
30 SCALE_MM,
31 SCALE_EN,
32 SCALE_BU,
33 SCALE_VS,
34 SCALE_FS,
35 SCALE_MAX
36 };
37
38 enum roffdeco {
39 DECO_NONE,
40 DECO_SPECIAL,
41 DECO_RESERVED,
42 DECO_BOLD,
43 DECO_ITALIC,
44 DECO_ROMAN,
45 DECO_PREVIOUS,
46 DECO_SIZE,
47 DECO_NOSPACE,
48 DECO_FONT, /* font */
49 DECO_FFONT, /* font family */
50 DECO_MAX
51 };
52
53 struct roffsu {
54 enum roffscale unit;
55 double scale;
56 int pt;
57 };
58
59 #define SCALE_INVERT(p) \
60 do { (p)->scale = -(p)->scale; } \
61 while (/* CONSTCOND */ 0)
62
63 #define SCALE_VS_INIT(p, v) \
64 do { (p)->unit = SCALE_VS; \
65 (p)->scale = (v); \
66 (p)->pt = 0; } \
67 while (/* CONSTCOND */ 0)
68
69 #define SCALE_HS_INIT(p, v) \
70 do { (p)->unit = SCALE_BU; \
71 (p)->scale = (v); \
72 (p)->pt = 0; } \
73 while (/* CONSTCOND */ 0)
74
75 int a2roffsu(const char *,
76 struct roffsu *, enum roffscale);
77 int a2roffdeco(enum roffdeco *, const char **, size_t *);
78 void time2a(time_t, char *, size_t);
79
80 __END_DECLS
81
82 #endif /*!HTML_H*/