Home | History | Annotate | Line # | Download | only in printf
printf.c revision 1.19
      1  1.19     perry /*	$NetBSD: printf.c,v 1.19 1998/02/03 03:10:15 perry Exp $	*/
      2  1.14       tls 
      3   1.1       cgd /*
      4  1.17       mrg  * Copyright (c) 1989, 1993
      5  1.17       mrg  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     16   1.1       cgd  *    must display the following acknowledgement:
     17   1.1       cgd  *	This product includes software developed by the University of
     18   1.1       cgd  *	California, Berkeley and its contributors.
     19   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     20   1.1       cgd  *    may be used to endorse or promote products derived from this software
     21   1.1       cgd  *    without specific prior written permission.
     22   1.1       cgd  *
     23   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1       cgd  * SUCH DAMAGE.
     34   1.1       cgd  */
     35   1.1       cgd 
     36  1.16  christos #include <sys/cdefs.h>
     37   1.1       cgd #ifndef lint
     38  1.17       mrg #if !defined(BUILTIN) && !defined(SHELL)
     39  1.17       mrg __COPYRIGHT("@(#) Copyright (c) 1989, 1993\n\
     40  1.17       mrg 	The Regents of the University of California.  All rights reserved.\n");
     41  1.17       mrg #endif
     42   1.5       jtc #endif
     43   1.1       cgd 
     44   1.1       cgd #ifndef lint
     45  1.16  christos #if 0
     46  1.17       mrg static char sccsid[] = "@(#)printf.c	8.2 (Berkeley) 3/22/95";
     47  1.16  christos #else
     48  1.19     perry __RCSID("$NetBSD: printf.c,v 1.19 1998/02/03 03:10:15 perry Exp $");
     49  1.16  christos #endif
     50   1.1       cgd #endif /* not lint */
     51   1.1       cgd 
     52  1.17       mrg #include <sys/types.h>
     53  1.17       mrg 
     54   1.4       jtc #include <ctype.h>
     55  1.19     perry #include <err.h>
     56  1.19     perry #include <errno.h>
     57  1.19     perry #include <limits.h>
     58  1.19     perry #include <locale.h>
     59   1.1       cgd #include <stdio.h>
     60   1.4       jtc #include <stdlib.h>
     61   1.2   mycroft #include <string.h>
     62  1.19     perry #include <unistd.h>
     63   1.4       jtc 
     64   1.7       jtc static int	 print_escape_str __P((const char *));
     65  1.15       cgd static size_t	 print_escape __P((const char *));
     66   1.5       jtc 
     67   1.5       jtc static int	 getchr __P((void));
     68   1.5       jtc static double	 getdouble __P((void));
     69   1.5       jtc static int	 getint __P((void));
     70   1.5       jtc static long	 getlong __P((void));
     71  1.11       jtc static unsigned long getulong __P ((void));
     72   1.5       jtc static char	*getstr __P((void));
     73  1.12       jtc static char	*mklong __P((const char *, int));
     74  1.12       jtc static void      check_conversion __P((const char *, const char *));
     75   1.5       jtc static void	 usage __P((void));
     76   1.4       jtc 
     77   1.5       jtc static int	rval;
     78   1.5       jtc static char  **gargv;
     79   1.4       jtc 
     80  1.16  christos #ifdef BUILTIN
     81  1.16  christos int progprintf __P((int, char **));
     82  1.16  christos #else
     83  1.16  christos int main __P((int, char **));
     84  1.16  christos #endif
     85  1.16  christos 
     86   1.4       jtc #define isodigit(c)	((c) >= '0' && (c) <= '7')
     87   1.4       jtc #define octtobin(c)	((c) - '0')
     88   1.9       jtc #define hextobin(c)	((c) >= 'A' && (c) <= 'F' ? c - 'A' + 10 : (c) >= 'a' && (c) <= 'f' ? c - 'a' + 10 : c - '0')
     89   1.1       cgd 
     90   1.5       jtc #ifdef SHELL
     91   1.5       jtc #define main printfcmd
     92   1.5       jtc #include "../../bin/sh/bltin/bltin.h"
     93   1.5       jtc 
     94   1.5       jtc #ifdef __STDC__
     95   1.5       jtc #include <stdarg.h>
     96   1.5       jtc #else
     97   1.5       jtc #include <vararg.h>
     98   1.5       jtc #endif
     99  1.16  christos 
    100  1.16  christos static void warnx __P((const char *fmt, ...));
    101   1.5       jtc 
    102   1.5       jtc static void
    103   1.5       jtc #ifdef __STDC__
    104   1.5       jtc warnx(const char *fmt, ...)
    105   1.5       jtc #else
    106   1.5       jtc warnx(fmt, va_alist)
    107   1.5       jtc 	const char *fmt;
    108   1.5       jtc 	va_dcl
    109   1.5       jtc #endif
    110   1.5       jtc {
    111   1.5       jtc 
    112   1.5       jtc 	char buf[64];
    113   1.5       jtc 	va_list ap;
    114   1.5       jtc 
    115   1.5       jtc #ifdef __STDC__
    116   1.5       jtc 	va_start(ap, fmt);
    117   1.5       jtc #else
    118   1.5       jtc 	va_start(ap);
    119   1.5       jtc #endif
    120   1.5       jtc 	vsprintf(buf, fmt, ap);
    121   1.5       jtc 	va_end(ap);
    122   1.5       jtc 
    123   1.5       jtc 	error(buf);
    124   1.5       jtc }
    125   1.5       jtc #endif /* SHELL */
    126   1.5       jtc 
    127   1.1       cgd #define PF(f, func) { \
    128   1.1       cgd 	if (fieldwidth) \
    129   1.1       cgd 		if (precision) \
    130   1.1       cgd 			(void)printf(f, fieldwidth, precision, func); \
    131   1.1       cgd 		else \
    132   1.1       cgd 			(void)printf(f, fieldwidth, func); \
    133   1.1       cgd 	else if (precision) \
    134   1.1       cgd 		(void)printf(f, precision, func); \
    135   1.1       cgd 	else \
    136   1.1       cgd 		(void)printf(f, func); \
    137   1.1       cgd }
    138   1.1       cgd 
    139   1.4       jtc int
    140   1.5       jtc #ifdef BUILTIN
    141   1.5       jtc progprintf(argc, argv)
    142   1.5       jtc #else
    143   1.1       cgd main(argc, argv)
    144   1.5       jtc #endif
    145   1.1       cgd 	int argc;
    146  1.17       mrg 	char *argv[];
    147   1.1       cgd {
    148  1.18     lukem 	char *fmt, *start;
    149  1.18     lukem 	int fieldwidth, precision;
    150   1.6       jtc 	char convch, nextch;
    151   1.4       jtc 	char *format;
    152   1.5       jtc 	int ch;
    153   1.4       jtc 
    154   1.5       jtc #if !defined(SHELL) && !defined(BUILTIN)
    155  1.15       cgd 	(void)setlocale (LC_ALL, "");
    156   1.5       jtc #endif
    157   1.1       cgd 
    158   1.5       jtc 	while ((ch = getopt(argc, argv, "")) != -1) {
    159   1.5       jtc 		switch (ch) {
    160   1.5       jtc 		case '?':
    161   1.5       jtc 		default:
    162   1.5       jtc 			usage();
    163   1.5       jtc 			return (1);
    164   1.5       jtc 		}
    165   1.1       cgd 	}
    166   1.5       jtc 	argc -= optind;
    167   1.5       jtc 	argv += optind;
    168   1.1       cgd 
    169   1.5       jtc 	if (argc < 1) {
    170   1.5       jtc 		usage();
    171   1.5       jtc 		return (1);
    172   1.5       jtc 	}
    173   1.5       jtc 
    174   1.5       jtc 	format = *argv;
    175   1.5       jtc 	gargv = ++argv;
    176   1.4       jtc 
    177   1.7       jtc #define SKIP1	"#-+ 0"
    178   1.7       jtc #define SKIP2	"*0123456789"
    179   1.4       jtc 	do {
    180   1.6       jtc 		/*
    181   1.6       jtc 		 * Basic algorithm is to scan the format string for conversion
    182   1.6       jtc 		 * specifications -- once one is found, find out if the field
    183   1.6       jtc 		 * width or precision is a '*'; if it is, gather up value.
    184   1.6       jtc 		 * Note, format strings are reused as necessary to use up the
    185   1.6       jtc 		 * provided arguments, arguments of zero/null string are
    186   1.6       jtc 		 * provided to use up the format string.
    187   1.6       jtc 		 */
    188   1.6       jtc 
    189   1.6       jtc 		/* find next format specification */
    190   1.6       jtc 		for (fmt = format; *fmt; fmt++) {
    191   1.6       jtc 			switch (*fmt) {
    192   1.6       jtc 			case '%':
    193   1.6       jtc 				start = fmt++;
    194   1.6       jtc 
    195   1.6       jtc 				if (*fmt == '%') {
    196  1.15       cgd 					(void)putchar('%');
    197   1.6       jtc 					break;
    198   1.6       jtc 				} else if (*fmt == 'b') {
    199   1.6       jtc 					char *p = getstr();
    200   1.7       jtc 					if (print_escape_str(p)) {
    201   1.7       jtc 						return (rval);
    202   1.7       jtc 					}
    203   1.6       jtc 					break;
    204   1.6       jtc 				}
    205   1.6       jtc 
    206   1.6       jtc 				/* skip to field width */
    207  1.18     lukem 				for (; strchr(SKIP1, *fmt); ++fmt) ;
    208   1.6       jtc 				fieldwidth = *fmt == '*' ? getint() : 0;
    209   1.6       jtc 
    210   1.6       jtc 				/* skip to possible '.', get following precision */
    211  1.18     lukem 				for (; strchr(SKIP2, *fmt); ++fmt) ;
    212   1.6       jtc 				if (*fmt == '.')
    213   1.6       jtc 					++fmt;
    214   1.6       jtc 				precision = *fmt == '*' ? getint() : 0;
    215   1.6       jtc 
    216  1.18     lukem 				for (; strchr(SKIP2, *fmt); ++fmt) ;
    217   1.6       jtc 				if (!*fmt) {
    218   1.6       jtc 					warnx ("missing format character");
    219  1.10       jtc 					return(1);
    220   1.6       jtc 				}
    221   1.6       jtc 
    222   1.6       jtc 				convch = *fmt;
    223   1.6       jtc 				nextch = *(fmt + 1);
    224   1.6       jtc 				*(fmt + 1) = '\0';
    225   1.6       jtc 				switch(convch) {
    226   1.6       jtc 				case 'c': {
    227   1.6       jtc 					char p = getchr();
    228   1.6       jtc 					PF(start, p);
    229   1.6       jtc 					break;
    230   1.6       jtc 				}
    231   1.6       jtc 				case 's': {
    232   1.6       jtc 					char *p = getstr();
    233   1.6       jtc 					PF(start, p);
    234   1.6       jtc 					break;
    235   1.6       jtc 				}
    236   1.7       jtc 				case 'd':
    237  1.11       jtc 				case 'i': {
    238  1.11       jtc 					char *f = mklong(start, convch);
    239  1.11       jtc 					long p = getlong();
    240  1.11       jtc 					PF(f, p);
    241  1.11       jtc 					break;
    242  1.11       jtc 				}
    243   1.7       jtc 				case 'o':
    244   1.7       jtc 				case 'u':
    245   1.7       jtc 				case 'x':
    246   1.7       jtc 				case 'X': {
    247   1.6       jtc 					char *f = mklong(start, convch);
    248  1.11       jtc 					unsigned long p = getulong();
    249   1.6       jtc 					PF(f, p);
    250   1.6       jtc 					break;
    251   1.6       jtc 				}
    252   1.7       jtc 				case 'e':
    253   1.7       jtc 				case 'E':
    254   1.7       jtc 				case 'f':
    255   1.7       jtc 				case 'g':
    256   1.7       jtc 				case 'G': {
    257   1.6       jtc 					double p = getdouble();
    258   1.6       jtc 					PF(start, p);
    259   1.6       jtc 					break;
    260   1.6       jtc 				}
    261   1.6       jtc 				default:
    262   1.6       jtc 					warnx ("%s: invalid directive", start);
    263  1.10       jtc 					return(1);
    264   1.6       jtc 				}
    265   1.6       jtc 				*(fmt + 1) = nextch;
    266   1.6       jtc 				break;
    267   1.4       jtc 
    268   1.6       jtc 			case '\\':
    269   1.6       jtc 				fmt += print_escape(fmt);
    270   1.4       jtc 				break;
    271   1.4       jtc 
    272   1.6       jtc 			default:
    273  1.15       cgd 				(void)putchar(*fmt);
    274   1.4       jtc 				break;
    275   1.4       jtc 			}
    276   1.6       jtc 		}
    277   1.6       jtc 	} while (gargv > argv && *gargv);
    278   1.1       cgd 
    279   1.6       jtc 	return (rval);
    280   1.4       jtc }
    281   1.4       jtc 
    282   1.4       jtc 
    283   1.4       jtc /*
    284   1.4       jtc  * Print SysV echo(1) style escape string
    285   1.7       jtc  *	Halts processing string and returns 1 if a \c escape is encountered.
    286   1.4       jtc  */
    287   1.7       jtc static int
    288   1.4       jtc print_escape_str(str)
    289  1.18     lukem 	const char *str;
    290   1.4       jtc {
    291   1.4       jtc 	int value;
    292   1.4       jtc 	int c;
    293   1.4       jtc 
    294   1.4       jtc 	while (*str) {
    295   1.4       jtc 		if (*str == '\\') {
    296   1.4       jtc 			str++;
    297   1.4       jtc 			/*
    298   1.4       jtc 			 * %b string octal constants are not like those in C.
    299   1.4       jtc 			 * They start with a \0, and are followed by 0, 1, 2,
    300   1.4       jtc 			 * or 3 octal digits.
    301   1.4       jtc 			 */
    302   1.4       jtc 			if (*str == '0') {
    303   1.4       jtc 				str++;
    304   1.4       jtc 				for (c = 3, value = 0; c-- && isodigit(*str); str++) {
    305   1.4       jtc 					value <<= 3;
    306   1.4       jtc 					value += octtobin(*str);
    307   1.4       jtc 				}
    308  1.15       cgd 				(void)putchar(value);
    309   1.4       jtc 				str--;
    310   1.4       jtc 			} else if (*str == 'c') {
    311   1.7       jtc 				return 1;
    312   1.4       jtc 			} else {
    313   1.4       jtc 				str--;
    314   1.4       jtc 				str += print_escape(str);
    315   1.4       jtc 			}
    316   1.4       jtc 		} else {
    317  1.15       cgd 			(void)putchar(*str);
    318   1.1       cgd 		}
    319   1.4       jtc 		str++;
    320   1.4       jtc 	}
    321   1.7       jtc 
    322   1.7       jtc 	return 0;
    323   1.4       jtc }
    324   1.4       jtc 
    325   1.4       jtc /*
    326   1.4       jtc  * Print "standard" escape characters
    327   1.4       jtc  */
    328  1.15       cgd static size_t
    329   1.4       jtc print_escape(str)
    330  1.18     lukem 	const char *str;
    331   1.4       jtc {
    332   1.7       jtc 	const char *start = str;
    333   1.9       jtc 	int value;
    334   1.4       jtc 	int c;
    335   1.4       jtc 
    336   1.4       jtc 	str++;
    337   1.4       jtc 
    338   1.4       jtc 	switch (*str) {
    339   1.4       jtc 	case '0': case '1': case '2': case '3':
    340   1.4       jtc 	case '4': case '5': case '6': case '7':
    341   1.4       jtc 		for (c = 3, value = 0; c-- && isodigit(*str); str++) {
    342   1.4       jtc 			value <<= 3;
    343   1.4       jtc 			value += octtobin(*str);
    344   1.1       cgd 		}
    345  1.15       cgd 		(void)putchar(value);
    346   1.4       jtc 		return str - start - 1;
    347   1.4       jtc 		/* NOTREACHED */
    348   1.4       jtc 
    349   1.4       jtc 	case 'x':
    350   1.4       jtc 		str++;
    351   1.4       jtc 		for (value = 0; isxdigit(*str); str++) {
    352   1.4       jtc 			value <<= 4;
    353   1.4       jtc 			value += hextobin(*str);
    354   1.1       cgd 		}
    355   1.4       jtc 		if (value > UCHAR_MAX) {
    356   1.4       jtc 			warnx ("escape sequence out of range for character");
    357   1.4       jtc 			rval = 1;
    358   1.1       cgd 		}
    359  1.15       cgd 		(void)putchar (value);
    360   1.4       jtc 		return str - start - 1;
    361   1.4       jtc 		/* NOTREACHED */
    362   1.4       jtc 
    363   1.4       jtc 	case '\\':			/* backslash */
    364  1.15       cgd 		(void)putchar('\\');
    365   1.4       jtc 		break;
    366   1.4       jtc 
    367   1.4       jtc 	case '\'':			/* single quote */
    368  1.15       cgd 		(void)putchar('\'');
    369   1.4       jtc 		break;
    370   1.4       jtc 
    371   1.4       jtc 	case '"':			/* double quote */
    372  1.15       cgd 		(void)putchar('"');
    373   1.4       jtc 		break;
    374   1.4       jtc 
    375   1.4       jtc 	case 'a':			/* alert */
    376   1.4       jtc #ifdef __STDC__
    377  1.15       cgd 		(void)putchar('\a');
    378   1.4       jtc #else
    379  1.15       cgd 		(void)putchar(007);
    380   1.4       jtc #endif
    381   1.4       jtc 		break;
    382   1.4       jtc 
    383   1.4       jtc 	case 'b':			/* backspace */
    384  1.15       cgd 		(void)putchar('\b');
    385   1.4       jtc 		break;
    386   1.4       jtc 
    387   1.4       jtc 	case 'e':			/* escape */
    388   1.4       jtc #ifdef __GNUC__
    389  1.15       cgd 		(void)putchar('\e');
    390   1.4       jtc #else
    391  1.15       cgd 		(void)putchar(033);
    392   1.4       jtc #endif
    393   1.4       jtc 		break;
    394   1.4       jtc 
    395   1.4       jtc 	case 'f':			/* form-feed */
    396  1.15       cgd 		(void)putchar('\f');
    397   1.4       jtc 		break;
    398   1.4       jtc 
    399   1.4       jtc 	case 'n':			/* newline */
    400  1.15       cgd 		(void)putchar('\n');
    401   1.4       jtc 		break;
    402   1.4       jtc 
    403   1.4       jtc 	case 'r':			/* carriage-return */
    404  1.15       cgd 		(void)putchar('\r');
    405   1.4       jtc 		break;
    406   1.4       jtc 
    407   1.4       jtc 	case 't':			/* tab */
    408  1.15       cgd 		(void)putchar('\t');
    409   1.4       jtc 		break;
    410   1.4       jtc 
    411   1.4       jtc 	case 'v':			/* vertical-tab */
    412  1.15       cgd 		(void)putchar('\v');
    413   1.4       jtc 		break;
    414   1.4       jtc 
    415   1.4       jtc 	default:
    416  1.15       cgd 		(void)putchar(*str);
    417   1.4       jtc 		warnx("unknown escape sequence `\\%c'", *str);
    418   1.4       jtc 		rval = 1;
    419  1.15       cgd 		break;
    420   1.1       cgd 	}
    421   1.4       jtc 
    422   1.4       jtc 	return 1;
    423   1.1       cgd }
    424   1.1       cgd 
    425   1.5       jtc static char *
    426   1.1       cgd mklong(str, ch)
    427  1.12       jtc 	const char *str;
    428  1.12       jtc 	char ch;
    429   1.1       cgd {
    430   1.5       jtc 	static char copy[64];
    431  1.15       cgd 	size_t len;
    432   1.1       cgd 
    433   1.1       cgd 	len = strlen(str) + 2;
    434  1.15       cgd 	(void)memmove(copy, str, len - 3);
    435   1.1       cgd 	copy[len - 3] = 'l';
    436   1.1       cgd 	copy[len - 2] = ch;
    437   1.1       cgd 	copy[len - 1] = '\0';
    438   1.5       jtc 	return (copy);
    439   1.1       cgd }
    440   1.1       cgd 
    441   1.5       jtc static int
    442   1.1       cgd getchr()
    443   1.1       cgd {
    444   1.1       cgd 	if (!*gargv)
    445  1.17       mrg 		return ('\0');
    446  1.17       mrg 	return ((int)**gargv++);
    447   1.1       cgd }
    448   1.1       cgd 
    449   1.5       jtc static char *
    450   1.1       cgd getstr()
    451   1.1       cgd {
    452   1.1       cgd 	if (!*gargv)
    453  1.17       mrg 		return ("");
    454  1.17       mrg 	return (*gargv++);
    455   1.1       cgd }
    456   1.1       cgd 
    457  1.17       mrg static char *Number = "+-.0123456789";
    458   1.5       jtc static int
    459   1.1       cgd getint()
    460   1.1       cgd {
    461   1.1       cgd 	if (!*gargv)
    462   1.1       cgd 		return(0);
    463   1.4       jtc 
    464  1.18     lukem 	if (strchr(Number, **gargv))
    465   1.1       cgd 		return(atoi(*gargv++));
    466   1.4       jtc 
    467   1.4       jtc 	return 0;
    468   1.1       cgd }
    469   1.1       cgd 
    470   1.5       jtc static long
    471   1.1       cgd getlong()
    472   1.1       cgd {
    473   1.4       jtc 	long val;
    474   1.4       jtc 	char *ep;
    475   1.1       cgd 
    476   1.1       cgd 	if (!*gargv)
    477   1.4       jtc 		return(0L);
    478   1.4       jtc 
    479  1.13       jtc 	if (**gargv == '\"' || **gargv == '\'')
    480  1.13       jtc 		return (long) *((*gargv++)+1);
    481   1.4       jtc 
    482  1.11       jtc 	errno = 0;
    483   1.4       jtc 	val = strtol (*gargv, &ep, 0);
    484  1.12       jtc 	check_conversion(*gargv++, ep);
    485  1.11       jtc 	return val;
    486  1.11       jtc }
    487  1.11       jtc 
    488  1.11       jtc static unsigned long
    489  1.11       jtc getulong()
    490  1.11       jtc {
    491  1.11       jtc 	unsigned long val;
    492  1.11       jtc 	char *ep;
    493  1.11       jtc 
    494  1.11       jtc 	if (!*gargv)
    495  1.13       jtc 		return(0UL);
    496  1.11       jtc 
    497  1.13       jtc 	if (**gargv == '\"' || **gargv == '\'')
    498  1.13       jtc 		return (unsigned long) *((*gargv++)+1);
    499  1.11       jtc 
    500  1.11       jtc 	errno = 0;
    501  1.11       jtc 	val = strtoul (*gargv, &ep, 0);
    502  1.12       jtc 	check_conversion(*gargv++, ep);
    503   1.4       jtc 	return val;
    504   1.1       cgd }
    505   1.1       cgd 
    506   1.5       jtc static double
    507   1.1       cgd getdouble()
    508   1.1       cgd {
    509   1.4       jtc 	double val;
    510   1.4       jtc 	char *ep;
    511   1.1       cgd 
    512   1.1       cgd 	if (!*gargv)
    513   1.4       jtc 		return(0.0);
    514   1.4       jtc 
    515  1.13       jtc 	if (**gargv == '\"' || **gargv == '\'')
    516  1.13       jtc 		return (double) *((*gargv++)+1);
    517   1.1       cgd 
    518  1.11       jtc 	errno = 0;
    519   1.4       jtc 	val = strtod (*gargv, &ep);
    520  1.12       jtc 	check_conversion(*gargv++, ep);
    521  1.12       jtc 	return val;
    522  1.12       jtc }
    523  1.12       jtc 
    524  1.12       jtc static void
    525  1.12       jtc check_conversion(s, ep)
    526  1.12       jtc 	const char *s;
    527  1.12       jtc 	const char *ep;
    528  1.12       jtc {
    529   1.4       jtc 	if (*ep) {
    530  1.12       jtc 		if (ep == s)
    531  1.12       jtc 			warnx ("%s: expected numeric value", s);
    532  1.11       jtc 		else
    533  1.12       jtc 			warnx ("%s: not completely converted", s);
    534  1.11       jtc 		rval = 1;
    535  1.11       jtc 	} else if (errno == ERANGE) {
    536  1.12       jtc 		warnx ("%s: %s", s, strerror(ERANGE));
    537   1.4       jtc 		rval = 1;
    538   1.4       jtc 	}
    539   1.5       jtc }
    540   1.5       jtc 
    541   1.5       jtc static void
    542   1.5       jtc usage()
    543   1.5       jtc {
    544   1.5       jtc 	(void)fprintf(stderr, "usage: printf format [arg ...]\n");
    545   1.1       cgd }
    546