]>
git.cameronkatri.com Git - mandoc.git/blob - out.c
1 /* $Id: out.c,v 1.7 2009/10/22 18:59:00 kristaps Exp $ */
3 * Copyright (c) 2009 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 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.
17 #include <sys/types.h>
29 extern size_t strlcat(char *, const char *, size_t);
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 if ((dst
->scale
= atof(buf
)) < 0)
129 * Correctly writes the time in nroff form, which differs from standard
130 * form in that a space isn't printed in lieu of the extra %e field for
131 * single-digit dates.
134 time2a(time_t t
, char *dst
, size_t sz
)
142 localtime_r(&t
, &tm
);
149 if (0 == (nsz
= strftime(p
, sz
, "%B ", &tm
)))
155 if (0 == strftime(buf
, sizeof(buf
), "%e, ", &tm
))
158 nsz
= strlcat(p
, buf
+ (' ' == buf
[0] ? 1 : 0), sz
);
166 (void)strftime(p
, sz
, "%Y", &tm
);