]>
git.cameronkatri.com Git - mandoc.git/blob - out.c
1 /* $Id: out.c,v 1.23 2010/07/22 23:03:15 kristaps Exp $ */
3 * Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
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.
21 #include <sys/types.h>
33 * Convert a `scaling unit' to a consistent form, or fail. Scaling
34 * units are documented in groff.7, mdoc.7, man.7.
37 a2roffsu(const char *src
, struct roffsu
*dst
, enum roffscale def
)
39 char buf
[BUFSIZ
], hasd
;
63 if ( ! isdigit((u_char
)*src
)) {
74 if (BUFSIZ
== i
|| (*src
&& *(src
+ 1)))
102 if (SCALE_MAX
== def
)
119 /* FIXME: do this in the caller. */
120 if ((dst
->scale
= atof(buf
)) < 0)
128 * Correctly writes the time in nroff form, which differs from standard
129 * form in that a space isn't printed in lieu of the extra %e field for
130 * single-digit dates.
133 time2a(time_t t
, char *dst
, size_t sz
)
141 localtime_r(&t
, &tm
);
148 if (0 == (nsz
= strftime(p
, sz
, "%B ", &tm
)))
154 if (0 == strftime(buf
, sizeof(buf
), "%e, ", &tm
))
157 nsz
= strlcat(p
, buf
+ (' ' == buf
[0] ? 1 : 0), sz
);
165 (void)strftime(p
, sz
, "%Y", &tm
);
170 a2roffdeco(enum roffdeco
*d
, const char **word
, size_t *sz
)
181 switch ((c
= wp
[i
++])) {
189 *d
= 'F' == c
? DECO_FFONT
: DECO_FONT
;
244 if ('+' == wp
[i
] || '-' == wp
[i
])
247 j
= ('s' != wp
[i
- 1]);
268 if ('+' == wp
[i
] || '-' == wp
[i
]) {
296 while (wp
[i
] && wp
[i
] != term
)
304 *sz
= (size_t)(i
- j
);
312 for (j
= 0; wp
[i
] && j
< lim
; j
++)