]>
git.cameronkatri.com Git - mandoc.git/blob - out.c
1 /* $Id: out.c,v 1.4 2009/10/09 06:54:11 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>
27 * Convert a `scaling unit' to a consistent form, or fail. Scaling
28 * units are documented in groff.7, which stipulates the following:
30 * (1) A scaling unit is a signed/unsigned integer/float with or
33 * (2) The following units exist:
38 * m Em = the font size in points (width of letter m)
41 * u Basic unit for actual output device
42 * v Vertical line space in basic units scaled point =
43 * 1/sizescale of a point (defined in font DESC file)
47 a2roffsu(const char *src
, struct roffsu
*dst
)
49 char buf
[BUFSIZ
], hasd
;
67 if ( ! isdigit((u_char
)*src
)) {
78 if (BUFSIZ
== i
|| (*src
&& *(src
+ 1)))
120 if ((dst
->scale
= atof(buf
)) < 0)