xref: /freebsd/usr.bin/printf/printf.c (revision d9f9371008a4433a269555c374912db62ef797c0)
19b50d902SRodney W. Grimes /*
29b50d902SRodney W. Grimes  * Copyright (c) 1989, 1993
39b50d902SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
49b50d902SRodney W. Grimes  *
59b50d902SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
69b50d902SRodney W. Grimes  * modification, are permitted provided that the following conditions
79b50d902SRodney W. Grimes  * are met:
89b50d902SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
99b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
109b50d902SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
119b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
129b50d902SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
139b50d902SRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
149b50d902SRodney W. Grimes  *    must display the following acknowledgement:
159b50d902SRodney W. Grimes  *	This product includes software developed by the University of
169b50d902SRodney W. Grimes  *	California, Berkeley and its contributors.
179b50d902SRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
189b50d902SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
199b50d902SRodney W. Grimes  *    without specific prior written permission.
209b50d902SRodney W. Grimes  *
219b50d902SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
229b50d902SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
239b50d902SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
249b50d902SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
259b50d902SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
269b50d902SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
279b50d902SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
289b50d902SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
299b50d902SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
309b50d902SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
319b50d902SRodney W. Grimes  * SUCH DAMAGE.
329b50d902SRodney W. Grimes  */
339b50d902SRodney W. Grimes 
349b50d902SRodney W. Grimes #if !defined(BUILTIN) && !defined(SHELL)
359b50d902SRodney W. Grimes #ifndef lint
369b50d902SRodney W. Grimes static char copyright[] =
379b50d902SRodney W. Grimes "@(#) Copyright (c) 1989, 1993\n\
389b50d902SRodney W. Grimes 	The Regents of the University of California.  All rights reserved.\n";
399b50d902SRodney W. Grimes #endif /* not lint */
409b50d902SRodney W. Grimes #endif
419b50d902SRodney W. Grimes 
429b50d902SRodney W. Grimes #ifndef lint
439b50d902SRodney W. Grimes static char sccsid[] = "@(#)printf.c	8.1 (Berkeley) 7/20/93";
449b50d902SRodney W. Grimes #endif /* not lint */
459b50d902SRodney W. Grimes 
469b50d902SRodney W. Grimes #include <sys/types.h>
479b50d902SRodney W. Grimes 
489b50d902SRodney W. Grimes #include <err.h>
499b50d902SRodney W. Grimes #include <errno.h>
509b50d902SRodney W. Grimes #include <limits.h>
519b50d902SRodney W. Grimes #include <stdio.h>
529b50d902SRodney W. Grimes #include <stdlib.h>
539b50d902SRodney W. Grimes #include <string.h>
549b50d902SRodney W. Grimes 
559b50d902SRodney W. Grimes #ifdef SHELL
569b50d902SRodney W. Grimes #define main printfcmd
57d9f93710SJoerg Wunsch #include "bltin/bltin.h"
589b50d902SRodney W. Grimes #endif
599b50d902SRodney W. Grimes 
609b50d902SRodney W. Grimes #define PF(f, func) { \
619b50d902SRodney W. Grimes 	if (fieldwidth) \
629b50d902SRodney W. Grimes 		if (precision) \
639b50d902SRodney W. Grimes 			(void)printf(f, fieldwidth, precision, func); \
649b50d902SRodney W. Grimes 		else \
659b50d902SRodney W. Grimes 			(void)printf(f, fieldwidth, func); \
669b50d902SRodney W. Grimes 	else if (precision) \
679b50d902SRodney W. Grimes 		(void)printf(f, precision, func); \
689b50d902SRodney W. Grimes 	else \
699b50d902SRodney W. Grimes 		(void)printf(f, func); \
709b50d902SRodney W. Grimes }
719b50d902SRodney W. Grimes 
729b50d902SRodney W. Grimes static int	 asciicode __P((void));
739b50d902SRodney W. Grimes static void	 escape __P((char *));
749b50d902SRodney W. Grimes static int	 getchr __P((void));
759b50d902SRodney W. Grimes static double	 getdouble __P((void));
769b50d902SRodney W. Grimes static int	 getint __P((int *));
779b50d902SRodney W. Grimes static int	 getlong __P((long *));
789b50d902SRodney W. Grimes static char	*getstr __P((void));
799b50d902SRodney W. Grimes static char	*mklong __P((char *, int));
809b50d902SRodney W. Grimes static void	 usage __P((void));
819b50d902SRodney W. Grimes 
829b50d902SRodney W. Grimes static char **gargv;
839b50d902SRodney W. Grimes 
849b50d902SRodney W. Grimes int
859b50d902SRodney W. Grimes #ifdef BUILTIN
869b50d902SRodney W. Grimes progprintf(argc, argv)
879b50d902SRodney W. Grimes #else
889b50d902SRodney W. Grimes main(argc, argv)
899b50d902SRodney W. Grimes #endif
909b50d902SRodney W. Grimes 	int argc;
919b50d902SRodney W. Grimes 	char *argv[];
929b50d902SRodney W. Grimes {
939b50d902SRodney W. Grimes 	extern int optind;
949b50d902SRodney W. Grimes 	static char *skip1, *skip2;
959b50d902SRodney W. Grimes 	int ch, end, fieldwidth, precision;
969b50d902SRodney W. Grimes 	char convch, nextch, *format, *fmt, *start;
979b50d902SRodney W. Grimes 
989b50d902SRodney W. Grimes 	while ((ch = getopt(argc, argv, "")) != EOF)
999b50d902SRodney W. Grimes 		switch (ch) {
1009b50d902SRodney W. Grimes 		case '?':
1019b50d902SRodney W. Grimes 		default:
1029b50d902SRodney W. Grimes 			usage();
1039b50d902SRodney W. Grimes 			return (1);
1049b50d902SRodney W. Grimes 		}
1059b50d902SRodney W. Grimes 	argc -= optind;
1069b50d902SRodney W. Grimes 	argv += optind;
1079b50d902SRodney W. Grimes 
1089b50d902SRodney W. Grimes 	if (argc < 1) {
1099b50d902SRodney W. Grimes 		usage();
1109b50d902SRodney W. Grimes 		return (1);
1119b50d902SRodney W. Grimes 	}
1129b50d902SRodney W. Grimes 
1139b50d902SRodney W. Grimes 	/*
1149b50d902SRodney W. Grimes 	 * Basic algorithm is to scan the format string for conversion
1159b50d902SRodney W. Grimes 	 * specifications -- once one is found, find out if the field
1169b50d902SRodney W. Grimes 	 * width or precision is a '*'; if it is, gather up value.  Note,
1179b50d902SRodney W. Grimes 	 * format strings are reused as necessary to use up the provided
1189b50d902SRodney W. Grimes 	 * arguments, arguments of zero/null string are provided to use
1199b50d902SRodney W. Grimes 	 * up the format string.
1209b50d902SRodney W. Grimes 	 */
1219b50d902SRodney W. Grimes 	skip1 = "#-+ 0";
122d867cefdSJoerg Wunsch 	skip2 = "0123456789";
1239b50d902SRodney W. Grimes 
1249b50d902SRodney W. Grimes 	escape(fmt = format = *argv);		/* backslash interpretation */
1259b50d902SRodney W. Grimes 	gargv = ++argv;
1269b50d902SRodney W. Grimes 	for (;;) {
1279b50d902SRodney W. Grimes 		end = 0;
1289b50d902SRodney W. Grimes 		/* find next format specification */
1299b50d902SRodney W. Grimes next:		for (start = fmt;; ++fmt) {
1309b50d902SRodney W. Grimes 			if (!*fmt) {
1319b50d902SRodney W. Grimes 				/* avoid infinite loop */
1329b50d902SRodney W. Grimes 				if (end == 1) {
1339b50d902SRodney W. Grimes 					warnx("missing format character",
1349b50d902SRodney W. Grimes 					    NULL, NULL);
1359b50d902SRodney W. Grimes 					return (1);
1369b50d902SRodney W. Grimes 				}
1379b50d902SRodney W. Grimes 				end = 1;
1389b50d902SRodney W. Grimes 				if (fmt > start)
1399b50d902SRodney W. Grimes 					(void)printf("%s", start);
1409b50d902SRodney W. Grimes 				if (!*gargv)
1419b50d902SRodney W. Grimes 					return (0);
1429b50d902SRodney W. Grimes 				fmt = format;
1439b50d902SRodney W. Grimes 				goto next;
1449b50d902SRodney W. Grimes 			}
1459b50d902SRodney W. Grimes 			/* %% prints a % */
1469b50d902SRodney W. Grimes 			if (*fmt == '%') {
1479b50d902SRodney W. Grimes 				if (*++fmt != '%')
1489b50d902SRodney W. Grimes 					break;
1499b50d902SRodney W. Grimes 				*fmt++ = '\0';
1509b50d902SRodney W. Grimes 				(void)printf("%s", start);
1519b50d902SRodney W. Grimes 				goto next;
1529b50d902SRodney W. Grimes 			}
1539b50d902SRodney W. Grimes 		}
1549b50d902SRodney W. Grimes 
1559b50d902SRodney W. Grimes 		/* skip to field width */
1569b50d902SRodney W. Grimes 		for (; strchr(skip1, *fmt); ++fmt);
1579b50d902SRodney W. Grimes 		if (*fmt == '*') {
1589b50d902SRodney W. Grimes 			if (getint(&fieldwidth))
1599b50d902SRodney W. Grimes 				return (1);
160d867cefdSJoerg Wunsch 			++fmt;
161d867cefdSJoerg Wunsch 		} else {
1629b50d902SRodney W. Grimes 			fieldwidth = 0;
1639b50d902SRodney W. Grimes 
1649b50d902SRodney W. Grimes 			/* skip to possible '.', get following precision */
1659b50d902SRodney W. Grimes 			for (; strchr(skip2, *fmt); ++fmt);
166d867cefdSJoerg Wunsch 		}
167d867cefdSJoerg Wunsch 		if (*fmt == '.') {
168d867cefdSJoerg Wunsch 			/* precision present? */
1699b50d902SRodney W. Grimes 			++fmt;
1709b50d902SRodney W. Grimes 			if (*fmt == '*') {
1719b50d902SRodney W. Grimes 				if (getint(&precision))
1729b50d902SRodney W. Grimes 					return (1);
173d867cefdSJoerg Wunsch 				++fmt;
174d867cefdSJoerg Wunsch 			} else {
1759b50d902SRodney W. Grimes 				precision = 0;
1769b50d902SRodney W. Grimes 
1779b50d902SRodney W. Grimes 				/* skip to conversion char */
1789b50d902SRodney W. Grimes 				for (; strchr(skip2, *fmt); ++fmt);
179d867cefdSJoerg Wunsch 			}
180d867cefdSJoerg Wunsch 		} else
181d867cefdSJoerg Wunsch 			precision = 0;
1829b50d902SRodney W. Grimes 		if (!*fmt) {
1839b50d902SRodney W. Grimes 			warnx("missing format character", NULL, NULL);
1849b50d902SRodney W. Grimes 			return (1);
1859b50d902SRodney W. Grimes 		}
1869b50d902SRodney W. Grimes 
1879b50d902SRodney W. Grimes 		convch = *fmt;
1889b50d902SRodney W. Grimes 		nextch = *++fmt;
1899b50d902SRodney W. Grimes 		*fmt = '\0';
1909b50d902SRodney W. Grimes 		switch(convch) {
1919b50d902SRodney W. Grimes 		case 'c': {
1929b50d902SRodney W. Grimes 			char p;
1939b50d902SRodney W. Grimes 
1949b50d902SRodney W. Grimes 			p = getchr();
1959b50d902SRodney W. Grimes 			PF(start, p);
1969b50d902SRodney W. Grimes 			break;
1979b50d902SRodney W. Grimes 		}
1989b50d902SRodney W. Grimes 		case 's': {
1999b50d902SRodney W. Grimes 			char *p;
2009b50d902SRodney W. Grimes 
2019b50d902SRodney W. Grimes 			p = getstr();
2029b50d902SRodney W. Grimes 			PF(start, p);
2039b50d902SRodney W. Grimes 			break;
2049b50d902SRodney W. Grimes 		}
2059b50d902SRodney W. Grimes 		case 'd': case 'i': case 'o': case 'u': case 'x': case 'X': {
2069b50d902SRodney W. Grimes 			long p;
2079b50d902SRodney W. Grimes 			char *f;
2089b50d902SRodney W. Grimes 
2099b50d902SRodney W. Grimes 			if ((f = mklong(start, convch)) == NULL)
2109b50d902SRodney W. Grimes 				return (1);
2119b50d902SRodney W. Grimes 			if (getlong(&p))
2129b50d902SRodney W. Grimes 				return (1);
2139b50d902SRodney W. Grimes 			PF(f, p);
2149b50d902SRodney W. Grimes 			break;
2159b50d902SRodney W. Grimes 		}
2169b50d902SRodney W. Grimes 		case 'e': case 'E': case 'f': case 'g': case 'G': {
2179b50d902SRodney W. Grimes 			double p;
2189b50d902SRodney W. Grimes 
2199b50d902SRodney W. Grimes 			p = getdouble();
2209b50d902SRodney W. Grimes 			PF(start, p);
2219b50d902SRodney W. Grimes 			break;
2229b50d902SRodney W. Grimes 		}
2239b50d902SRodney W. Grimes 		default:
224d867cefdSJoerg Wunsch 			warnx("illegal format character %c",  convch, NULL);
2259b50d902SRodney W. Grimes 			return (1);
2269b50d902SRodney W. Grimes 		}
2279b50d902SRodney W. Grimes 		*fmt = nextch;
2289b50d902SRodney W. Grimes 	}
2299b50d902SRodney W. Grimes 	/* NOTREACHED */
2309b50d902SRodney W. Grimes }
2319b50d902SRodney W. Grimes 
2329b50d902SRodney W. Grimes static char *
2339b50d902SRodney W. Grimes mklong(str, ch)
2349b50d902SRodney W. Grimes 	char *str;
2359b50d902SRodney W. Grimes 	int ch;
2369b50d902SRodney W. Grimes {
2379b50d902SRodney W. Grimes 	static char copy[64];
2389b50d902SRodney W. Grimes 	int len;
2399b50d902SRodney W. Grimes 
2409b50d902SRodney W. Grimes 	len = strlen(str) + 2;
2419b50d902SRodney W. Grimes 	memmove(copy, str, len - 3);
2429b50d902SRodney W. Grimes 	copy[len - 3] = 'l';
2439b50d902SRodney W. Grimes 	copy[len - 2] = ch;
2449b50d902SRodney W. Grimes 	copy[len - 1] = '\0';
2459b50d902SRodney W. Grimes 	return (copy);
2469b50d902SRodney W. Grimes }
2479b50d902SRodney W. Grimes 
2489b50d902SRodney W. Grimes static void
2499b50d902SRodney W. Grimes escape(fmt)
2509b50d902SRodney W. Grimes 	register char *fmt;
2519b50d902SRodney W. Grimes {
2529b50d902SRodney W. Grimes 	register char *store;
2539b50d902SRodney W. Grimes 	register int value, c;
2549b50d902SRodney W. Grimes 
2559b50d902SRodney W. Grimes 	for (store = fmt; c = *fmt; ++fmt, ++store) {
2569b50d902SRodney W. Grimes 		if (c != '\\') {
2579b50d902SRodney W. Grimes 			*store = c;
2589b50d902SRodney W. Grimes 			continue;
2599b50d902SRodney W. Grimes 		}
2609b50d902SRodney W. Grimes 		switch (*++fmt) {
2619b50d902SRodney W. Grimes 		case '\0':		/* EOS, user error */
2629b50d902SRodney W. Grimes 			*store = '\\';
2639b50d902SRodney W. Grimes 			*++store = '\0';
2649b50d902SRodney W. Grimes 			return;
2659b50d902SRodney W. Grimes 		case '\\':		/* backslash */
2669b50d902SRodney W. Grimes 		case '\'':		/* single quote */
2679b50d902SRodney W. Grimes 			*store = *fmt;
2689b50d902SRodney W. Grimes 			break;
2699b50d902SRodney W. Grimes 		case 'a':		/* bell/alert */
2709b50d902SRodney W. Grimes 			*store = '\7';
2719b50d902SRodney W. Grimes 			break;
2729b50d902SRodney W. Grimes 		case 'b':		/* backspace */
2739b50d902SRodney W. Grimes 			*store = '\b';
2749b50d902SRodney W. Grimes 			break;
2759b50d902SRodney W. Grimes 		case 'f':		/* form-feed */
2769b50d902SRodney W. Grimes 			*store = '\f';
2779b50d902SRodney W. Grimes 			break;
2789b50d902SRodney W. Grimes 		case 'n':		/* newline */
2799b50d902SRodney W. Grimes 			*store = '\n';
2809b50d902SRodney W. Grimes 			break;
2819b50d902SRodney W. Grimes 		case 'r':		/* carriage-return */
2829b50d902SRodney W. Grimes 			*store = '\r';
2839b50d902SRodney W. Grimes 			break;
2849b50d902SRodney W. Grimes 		case 't':		/* horizontal tab */
2859b50d902SRodney W. Grimes 			*store = '\t';
2869b50d902SRodney W. Grimes 			break;
2879b50d902SRodney W. Grimes 		case 'v':		/* vertical tab */
2889b50d902SRodney W. Grimes 			*store = '\13';
2899b50d902SRodney W. Grimes 			break;
2909b50d902SRodney W. Grimes 					/* octal constant */
2919b50d902SRodney W. Grimes 		case '0': case '1': case '2': case '3':
2929b50d902SRodney W. Grimes 		case '4': case '5': case '6': case '7':
2939b50d902SRodney W. Grimes 			for (c = 3, value = 0;
2949b50d902SRodney W. Grimes 			    c-- && *fmt >= '0' && *fmt <= '7'; ++fmt) {
2959b50d902SRodney W. Grimes 				value <<= 3;
2969b50d902SRodney W. Grimes 				value += *fmt - '0';
2979b50d902SRodney W. Grimes 			}
2989b50d902SRodney W. Grimes 			--fmt;
2999b50d902SRodney W. Grimes 			*store = value;
3009b50d902SRodney W. Grimes 			break;
3019b50d902SRodney W. Grimes 		default:
3029b50d902SRodney W. Grimes 			*store = *fmt;
3039b50d902SRodney W. Grimes 			break;
3049b50d902SRodney W. Grimes 		}
3059b50d902SRodney W. Grimes 	}
3069b50d902SRodney W. Grimes 	*store = '\0';
3079b50d902SRodney W. Grimes }
3089b50d902SRodney W. Grimes 
3099b50d902SRodney W. Grimes static int
3109b50d902SRodney W. Grimes getchr()
3119b50d902SRodney W. Grimes {
3129b50d902SRodney W. Grimes 	if (!*gargv)
3139b50d902SRodney W. Grimes 		return ('\0');
3149b50d902SRodney W. Grimes 	return ((int)**gargv++);
3159b50d902SRodney W. Grimes }
3169b50d902SRodney W. Grimes 
3179b50d902SRodney W. Grimes static char *
3189b50d902SRodney W. Grimes getstr()
3199b50d902SRodney W. Grimes {
3209b50d902SRodney W. Grimes 	if (!*gargv)
3219b50d902SRodney W. Grimes 		return ("");
3229b50d902SRodney W. Grimes 	return (*gargv++);
3239b50d902SRodney W. Grimes }
3249b50d902SRodney W. Grimes 
3259b50d902SRodney W. Grimes static char *Number = "+-.0123456789";
3269b50d902SRodney W. Grimes static int
3279b50d902SRodney W. Grimes getint(ip)
3289b50d902SRodney W. Grimes 	int *ip;
3299b50d902SRodney W. Grimes {
3309b50d902SRodney W. Grimes 	long val;
3319b50d902SRodney W. Grimes 
3329b50d902SRodney W. Grimes 	if (getlong(&val))
3339b50d902SRodney W. Grimes 		return (1);
3349b50d902SRodney W. Grimes 	if (val > INT_MAX) {
3359b50d902SRodney W. Grimes 		warnx("%s: %s", *gargv, strerror(ERANGE));
3369b50d902SRodney W. Grimes 		return (1);
3379b50d902SRodney W. Grimes 	}
3389b50d902SRodney W. Grimes 	*ip = val;
3399b50d902SRodney W. Grimes 	return (0);
3409b50d902SRodney W. Grimes }
3419b50d902SRodney W. Grimes 
3429b50d902SRodney W. Grimes static int
3439b50d902SRodney W. Grimes getlong(lp)
3449b50d902SRodney W. Grimes 	long *lp;
3459b50d902SRodney W. Grimes {
3469b50d902SRodney W. Grimes 	long val;
3479b50d902SRodney W. Grimes 	char *ep;
3489b50d902SRodney W. Grimes 
3499b50d902SRodney W. Grimes 	if (!*gargv) {
3509b50d902SRodney W. Grimes 		*lp = 0;
3519b50d902SRodney W. Grimes 		return (0);
3529b50d902SRodney W. Grimes 	}
3539b50d902SRodney W. Grimes 	if (strchr(Number, **gargv)) {
3549b50d902SRodney W. Grimes 		errno = 0;
3559b50d902SRodney W. Grimes 		val = strtol(*gargv, &ep, 0);
3569b50d902SRodney W. Grimes 		if (*ep != '\0') {
3579b50d902SRodney W. Grimes 			warnx("%s: illegal number", *gargv, NULL);
3589b50d902SRodney W. Grimes 			return (1);
3599b50d902SRodney W. Grimes 		}
3609b50d902SRodney W. Grimes 		if (errno == ERANGE)
3619b50d902SRodney W. Grimes 			if (val == LONG_MAX) {
3629b50d902SRodney W. Grimes 				warnx("%s: %s", *gargv, strerror(ERANGE));
3639b50d902SRodney W. Grimes 				return (1);
3649b50d902SRodney W. Grimes 			}
3659b50d902SRodney W. Grimes 			if (val == LONG_MIN) {
3669b50d902SRodney W. Grimes 				warnx("%s: %s", *gargv, strerror(ERANGE));
3679b50d902SRodney W. Grimes 				return (1);
3689b50d902SRodney W. Grimes 			}
3699b50d902SRodney W. Grimes 
3709b50d902SRodney W. Grimes 		*lp = val;
3719b50d902SRodney W. Grimes 		++gargv;
3729b50d902SRodney W. Grimes 		return (0);
3739b50d902SRodney W. Grimes 	}
3749b50d902SRodney W. Grimes 	*lp =  (long)asciicode();
3759b50d902SRodney W. Grimes 	return (0);
3769b50d902SRodney W. Grimes }
3779b50d902SRodney W. Grimes 
3789b50d902SRodney W. Grimes static double
3799b50d902SRodney W. Grimes getdouble()
3809b50d902SRodney W. Grimes {
3819b50d902SRodney W. Grimes 	if (!*gargv)
3829b50d902SRodney W. Grimes 		return ((double)0);
3839b50d902SRodney W. Grimes 	if (strchr(Number, **gargv))
3849b50d902SRodney W. Grimes 		return (atof(*gargv++));
3859b50d902SRodney W. Grimes 	return ((double)asciicode());
3869b50d902SRodney W. Grimes }
3879b50d902SRodney W. Grimes 
3889b50d902SRodney W. Grimes static int
3899b50d902SRodney W. Grimes asciicode()
3909b50d902SRodney W. Grimes {
3919b50d902SRodney W. Grimes 	register int ch;
3929b50d902SRodney W. Grimes 
3939b50d902SRodney W. Grimes 	ch = **gargv;
3949b50d902SRodney W. Grimes 	if (ch == '\'' || ch == '"')
3959b50d902SRodney W. Grimes 		ch = (*gargv)[1];
3969b50d902SRodney W. Grimes 	++gargv;
3979b50d902SRodney W. Grimes 	return (ch);
3989b50d902SRodney W. Grimes }
3999b50d902SRodney W. Grimes 
4009b50d902SRodney W. Grimes static void
4019b50d902SRodney W. Grimes usage()
4029b50d902SRodney W. Grimes {
4039b50d902SRodney W. Grimes 	(void)fprintf(stderr, "usage: printf format [arg ...]\n");
4049b50d902SRodney W. Grimes }
405