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 363ec30b79SSteve Price static char const 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 43c9e05349SWarner Losh #if 0 443ec30b79SSteve Price static char const sccsid[] = "@(#)printf.c 8.1 (Berkeley) 7/20/93"; 45c9e05349SWarner Losh #endif 461ea7321bSMartin Cracauer static const char rcsid[] = 471ea7321bSMartin Cracauer "$FreeBSD$"; 489b50d902SRodney W. Grimes #endif /* not lint */ 499b50d902SRodney W. Grimes 509b50d902SRodney W. Grimes #include <sys/types.h> 519b50d902SRodney W. Grimes 529b50d902SRodney W. Grimes #include <err.h> 539b50d902SRodney W. Grimes #include <errno.h> 549b50d902SRodney W. Grimes #include <limits.h> 559b50d902SRodney W. Grimes #include <stdio.h> 569b50d902SRodney W. Grimes #include <stdlib.h> 579b50d902SRodney W. Grimes #include <string.h> 589d19feb5SSteve Price #include <unistd.h> 599b50d902SRodney W. Grimes 609b50d902SRodney W. Grimes #ifdef SHELL 619b50d902SRodney W. Grimes #define main printfcmd 62d9f93710SJoerg Wunsch #include "bltin/bltin.h" 633c6e4a5cSBen Smithurst #include "memalloc.h" 643b53d380SBruce Evans #else 653b53d380SBruce Evans #define warnx1(a, b, c) warnx(a) 663b53d380SBruce Evans #define warnx2(a, b, c) warnx(a, b) 673b53d380SBruce Evans #define warnx3(a, b, c) warnx(a, b, c) 689b50d902SRodney W. Grimes #endif 699b50d902SRodney W. Grimes 70dc7d8c99SAndrey A. Chernov #ifndef BUILTIN 71dc7d8c99SAndrey A. Chernov #include <locale.h> 72dc7d8c99SAndrey A. Chernov #endif 73dc7d8c99SAndrey A. Chernov 749b50d902SRodney W. Grimes #define PF(f, func) { \ 75d72f654cSPeter Wemm char *b = NULL; \ 769b50d902SRodney W. Grimes if (fieldwidth) \ 779b50d902SRodney W. Grimes if (precision) \ 78d72f654cSPeter Wemm (void)asprintf(&b, f, fieldwidth, precision, func); \ 799b50d902SRodney W. Grimes else \ 80d72f654cSPeter Wemm (void)asprintf(&b, f, fieldwidth, func); \ 819b50d902SRodney W. Grimes else if (precision) \ 82d72f654cSPeter Wemm (void)asprintf(&b, f, precision, func); \ 839b50d902SRodney W. Grimes else \ 84d72f654cSPeter Wemm (void)asprintf(&b, f, func); \ 85d72f654cSPeter Wemm if (b) { \ 86d72f654cSPeter Wemm (void)fputs(b, stdout); \ 87d72f654cSPeter Wemm free(b); \ 88d72f654cSPeter Wemm } \ 899b50d902SRodney W. Grimes } 909b50d902SRodney W. Grimes 919b50d902SRodney W. Grimes static int asciicode __P((void)); 929b50d902SRodney W. Grimes static void escape __P((char *)); 939b50d902SRodney W. Grimes static int getchr __P((void)); 949b50d902SRodney W. Grimes static double getdouble __P((void)); 959b50d902SRodney W. Grimes static int getint __P((int *)); 9662a721e7SStefan Eßer static int getquad __P((quad_t *)); 979b50d902SRodney W. Grimes static char *getstr __P((void)); 989b50d902SRodney W. Grimes static char *mklong __P((char *, int)); 999b50d902SRodney W. Grimes static void usage __P((void)); 1009b50d902SRodney W. Grimes 1019b50d902SRodney W. Grimes static char **gargv; 1029b50d902SRodney W. Grimes 1039b50d902SRodney W. Grimes int 1049b50d902SRodney W. Grimes #ifdef BUILTIN 1059b50d902SRodney W. Grimes progprintf(argc, argv) 1069b50d902SRodney W. Grimes #else 1079b50d902SRodney W. Grimes main(argc, argv) 1089b50d902SRodney W. Grimes #endif 1099b50d902SRodney W. Grimes int argc; 1109b50d902SRodney W. Grimes char *argv[]; 1119b50d902SRodney W. Grimes { 1129b50d902SRodney W. Grimes static char *skip1, *skip2; 1139b50d902SRodney W. Grimes int ch, end, fieldwidth, precision; 1149b50d902SRodney W. Grimes char convch, nextch, *format, *fmt, *start; 1159b50d902SRodney W. Grimes 116dc7d8c99SAndrey A. Chernov #ifndef BUILTIN 117dc7d8c99SAndrey A. Chernov (void) setlocale(LC_NUMERIC, ""); 118dc7d8c99SAndrey A. Chernov #endif 1191c8af878SWarner Losh while ((ch = getopt(argc, argv, "")) != -1) 1209b50d902SRodney W. Grimes switch (ch) { 1219b50d902SRodney W. Grimes case '?': 1229b50d902SRodney W. Grimes default: 1239b50d902SRodney W. Grimes usage(); 1249b50d902SRodney W. Grimes return (1); 1259b50d902SRodney W. Grimes } 1269b50d902SRodney W. Grimes argc -= optind; 1279b50d902SRodney W. Grimes argv += optind; 1289b50d902SRodney W. Grimes 1299b50d902SRodney W. Grimes if (argc < 1) { 1309b50d902SRodney W. Grimes usage(); 1319b50d902SRodney W. Grimes return (1); 1329b50d902SRodney W. Grimes } 1339b50d902SRodney W. Grimes 1349b50d902SRodney W. Grimes /* 1359b50d902SRodney W. Grimes * Basic algorithm is to scan the format string for conversion 1369b50d902SRodney W. Grimes * specifications -- once one is found, find out if the field 1379b50d902SRodney W. Grimes * width or precision is a '*'; if it is, gather up value. Note, 1389b50d902SRodney W. Grimes * format strings are reused as necessary to use up the provided 1399b50d902SRodney W. Grimes * arguments, arguments of zero/null string are provided to use 1409b50d902SRodney W. Grimes * up the format string. 1419b50d902SRodney W. Grimes */ 1429b50d902SRodney W. Grimes skip1 = "#-+ 0"; 143d867cefdSJoerg Wunsch skip2 = "0123456789"; 1449b50d902SRodney W. Grimes 1459b50d902SRodney W. Grimes escape(fmt = format = *argv); /* backslash interpretation */ 1469b50d902SRodney W. Grimes gargv = ++argv; 1479b50d902SRodney W. Grimes for (;;) { 1489b50d902SRodney W. Grimes end = 0; 1499b50d902SRodney W. Grimes /* find next format specification */ 1509b50d902SRodney W. Grimes next: for (start = fmt;; ++fmt) { 1519b50d902SRodney W. Grimes if (!*fmt) { 1529b50d902SRodney W. Grimes /* avoid infinite loop */ 1539b50d902SRodney W. Grimes if (end == 1) { 1543b53d380SBruce Evans warnx1("missing format character", 155b0c9a86dSJohn Polstra NULL, NULL); 1569b50d902SRodney W. Grimes return (1); 1579b50d902SRodney W. Grimes } 1589b50d902SRodney W. Grimes end = 1; 1599b50d902SRodney W. Grimes if (fmt > start) 1609b50d902SRodney W. Grimes (void)printf("%s", start); 1619b50d902SRodney W. Grimes if (!*gargv) 1629b50d902SRodney W. Grimes return (0); 1639b50d902SRodney W. Grimes fmt = format; 1649b50d902SRodney W. Grimes goto next; 1659b50d902SRodney W. Grimes } 1669b50d902SRodney W. Grimes /* %% prints a % */ 1679b50d902SRodney W. Grimes if (*fmt == '%') { 1689b50d902SRodney W. Grimes if (*++fmt != '%') 1699b50d902SRodney W. Grimes break; 1709b50d902SRodney W. Grimes *fmt++ = '\0'; 1719b50d902SRodney W. Grimes (void)printf("%s", start); 1729b50d902SRodney W. Grimes goto next; 1739b50d902SRodney W. Grimes } 1749b50d902SRodney W. Grimes } 1759b50d902SRodney W. Grimes 1769b50d902SRodney W. Grimes /* skip to field width */ 1779b50d902SRodney W. Grimes for (; strchr(skip1, *fmt); ++fmt); 1789b50d902SRodney W. Grimes if (*fmt == '*') { 1799b50d902SRodney W. Grimes if (getint(&fieldwidth)) 1809b50d902SRodney W. Grimes return (1); 181d867cefdSJoerg Wunsch ++fmt; 182d867cefdSJoerg Wunsch } else { 1839b50d902SRodney W. Grimes fieldwidth = 0; 1849b50d902SRodney W. Grimes 1859b50d902SRodney W. Grimes /* skip to possible '.', get following precision */ 1869b50d902SRodney W. Grimes for (; strchr(skip2, *fmt); ++fmt); 187d867cefdSJoerg Wunsch } 188d867cefdSJoerg Wunsch if (*fmt == '.') { 189d867cefdSJoerg Wunsch /* precision present? */ 1909b50d902SRodney W. Grimes ++fmt; 1919b50d902SRodney W. Grimes if (*fmt == '*') { 1929b50d902SRodney W. Grimes if (getint(&precision)) 1939b50d902SRodney W. Grimes return (1); 194d867cefdSJoerg Wunsch ++fmt; 195d867cefdSJoerg Wunsch } else { 1969b50d902SRodney W. Grimes precision = 0; 1979b50d902SRodney W. Grimes 1989b50d902SRodney W. Grimes /* skip to conversion char */ 1999b50d902SRodney W. Grimes for (; strchr(skip2, *fmt); ++fmt); 200d867cefdSJoerg Wunsch } 201d867cefdSJoerg Wunsch } else 202d867cefdSJoerg Wunsch precision = 0; 2039b50d902SRodney W. Grimes if (!*fmt) { 2043b53d380SBruce Evans warnx1("missing format character", NULL, NULL); 2059b50d902SRodney W. Grimes return (1); 2069b50d902SRodney W. Grimes } 2079b50d902SRodney W. Grimes 2089b50d902SRodney W. Grimes convch = *fmt; 2099b50d902SRodney W. Grimes nextch = *++fmt; 2109b50d902SRodney W. Grimes *fmt = '\0'; 2119b50d902SRodney W. Grimes switch(convch) { 2129b50d902SRodney W. Grimes case 'c': { 2139b50d902SRodney W. Grimes char p; 2149b50d902SRodney W. Grimes 2159b50d902SRodney W. Grimes p = getchr(); 2169b50d902SRodney W. Grimes PF(start, p); 2179b50d902SRodney W. Grimes break; 2189b50d902SRodney W. Grimes } 2199b50d902SRodney W. Grimes case 's': { 2209b50d902SRodney W. Grimes char *p; 2219b50d902SRodney W. Grimes 2229b50d902SRodney W. Grimes p = getstr(); 2239b50d902SRodney W. Grimes PF(start, p); 2249b50d902SRodney W. Grimes break; 2259b50d902SRodney W. Grimes } 2269b50d902SRodney W. Grimes case 'd': case 'i': case 'o': case 'u': case 'x': case 'X': { 22762a721e7SStefan Eßer quad_t p; 2289b50d902SRodney W. Grimes char *f; 2299b50d902SRodney W. Grimes 2309b50d902SRodney W. Grimes if ((f = mklong(start, convch)) == NULL) 2319b50d902SRodney W. Grimes return (1); 23262a721e7SStefan Eßer if (getquad(&p)) 2339b50d902SRodney W. Grimes return (1); 2349b50d902SRodney W. Grimes PF(f, p); 2359b50d902SRodney W. Grimes break; 2369b50d902SRodney W. Grimes } 2379b50d902SRodney W. Grimes case 'e': case 'E': case 'f': case 'g': case 'G': { 2389b50d902SRodney W. Grimes double p; 2399b50d902SRodney W. Grimes 2409b50d902SRodney W. Grimes p = getdouble(); 2419b50d902SRodney W. Grimes PF(start, p); 2429b50d902SRodney W. Grimes break; 2439b50d902SRodney W. Grimes } 2449b50d902SRodney W. Grimes default: 2453b53d380SBruce Evans warnx2("illegal format character %c", convch, NULL); 2469b50d902SRodney W. Grimes return (1); 2479b50d902SRodney W. Grimes } 2489b50d902SRodney W. Grimes *fmt = nextch; 2499b50d902SRodney W. Grimes } 2509b50d902SRodney W. Grimes /* NOTREACHED */ 2519b50d902SRodney W. Grimes } 2529b50d902SRodney W. Grimes 2539b50d902SRodney W. Grimes static char * 2549b50d902SRodney W. Grimes mklong(str, ch) 2559b50d902SRodney W. Grimes char *str; 2569b50d902SRodney W. Grimes int ch; 2579b50d902SRodney W. Grimes { 2583c6e4a5cSBen Smithurst static char *copy; 2593c6e4a5cSBen Smithurst static size_t copy_size; 2603c6e4a5cSBen Smithurst size_t len, newlen; 2613c6e4a5cSBen Smithurst char *newcopy; 2629b50d902SRodney W. Grimes 2639b50d902SRodney W. Grimes len = strlen(str) + 2; 2643c6e4a5cSBen Smithurst if (len > copy_size) { 2653c6e4a5cSBen Smithurst newlen = ((len + 1023) >> 10) << 10; 2663c6e4a5cSBen Smithurst #ifdef SHELL 2673c6e4a5cSBen Smithurst if ((newcopy = ckrealloc(copy, newlen)) == NULL) 2683c6e4a5cSBen Smithurst #else 2693c6e4a5cSBen Smithurst if ((newcopy = realloc(copy, newlen)) == NULL) 2703c6e4a5cSBen Smithurst #endif 2713c6e4a5cSBen Smithurst return (NULL); 2723c6e4a5cSBen Smithurst copy = newcopy; 2733c6e4a5cSBen Smithurst copy_size = newlen; 2743c6e4a5cSBen Smithurst } 27562a721e7SStefan Eßer 2769b50d902SRodney W. Grimes memmove(copy, str, len - 3); 27762a721e7SStefan Eßer copy[len - 3] = 'q'; 2789b50d902SRodney W. Grimes copy[len - 2] = ch; 2799b50d902SRodney W. Grimes copy[len - 1] = '\0'; 2809b50d902SRodney W. Grimes return (copy); 2819b50d902SRodney W. Grimes } 2829b50d902SRodney W. Grimes 2839b50d902SRodney W. Grimes static void 2849b50d902SRodney W. Grimes escape(fmt) 2859b50d902SRodney W. Grimes register char *fmt; 2869b50d902SRodney W. Grimes { 2879b50d902SRodney W. Grimes register char *store; 2889b50d902SRodney W. Grimes register int value, c; 2899b50d902SRodney W. Grimes 290e6068a34SSteve Price for (store = fmt; (c = *fmt); ++fmt, ++store) { 2919b50d902SRodney W. Grimes if (c != '\\') { 2929b50d902SRodney W. Grimes *store = c; 2939b50d902SRodney W. Grimes continue; 2949b50d902SRodney W. Grimes } 2959b50d902SRodney W. Grimes switch (*++fmt) { 2969b50d902SRodney W. Grimes case '\0': /* EOS, user error */ 2979b50d902SRodney W. Grimes *store = '\\'; 2989b50d902SRodney W. Grimes *++store = '\0'; 2999b50d902SRodney W. Grimes return; 3009b50d902SRodney W. Grimes case '\\': /* backslash */ 3019b50d902SRodney W. Grimes case '\'': /* single quote */ 3029b50d902SRodney W. Grimes *store = *fmt; 3039b50d902SRodney W. Grimes break; 3049b50d902SRodney W. Grimes case 'a': /* bell/alert */ 3059b50d902SRodney W. Grimes *store = '\7'; 3069b50d902SRodney W. Grimes break; 3079b50d902SRodney W. Grimes case 'b': /* backspace */ 3089b50d902SRodney W. Grimes *store = '\b'; 3099b50d902SRodney W. Grimes break; 3109b50d902SRodney W. Grimes case 'f': /* form-feed */ 3119b50d902SRodney W. Grimes *store = '\f'; 3129b50d902SRodney W. Grimes break; 3139b50d902SRodney W. Grimes case 'n': /* newline */ 3149b50d902SRodney W. Grimes *store = '\n'; 3159b50d902SRodney W. Grimes break; 3169b50d902SRodney W. Grimes case 'r': /* carriage-return */ 3179b50d902SRodney W. Grimes *store = '\r'; 3189b50d902SRodney W. Grimes break; 3199b50d902SRodney W. Grimes case 't': /* horizontal tab */ 3209b50d902SRodney W. Grimes *store = '\t'; 3219b50d902SRodney W. Grimes break; 3229b50d902SRodney W. Grimes case 'v': /* vertical tab */ 3239b50d902SRodney W. Grimes *store = '\13'; 3249b50d902SRodney W. Grimes break; 3259b50d902SRodney W. Grimes /* octal constant */ 3269b50d902SRodney W. Grimes case '0': case '1': case '2': case '3': 3279b50d902SRodney W. Grimes case '4': case '5': case '6': case '7': 3289b50d902SRodney W. Grimes for (c = 3, value = 0; 3299b50d902SRodney W. Grimes c-- && *fmt >= '0' && *fmt <= '7'; ++fmt) { 3309b50d902SRodney W. Grimes value <<= 3; 3319b50d902SRodney W. Grimes value += *fmt - '0'; 3329b50d902SRodney W. Grimes } 3339b50d902SRodney W. Grimes --fmt; 3349b50d902SRodney W. Grimes *store = value; 3359b50d902SRodney W. Grimes break; 3369b50d902SRodney W. Grimes default: 3379b50d902SRodney W. Grimes *store = *fmt; 3389b50d902SRodney W. Grimes break; 3399b50d902SRodney W. Grimes } 3409b50d902SRodney W. Grimes } 3419b50d902SRodney W. Grimes *store = '\0'; 3429b50d902SRodney W. Grimes } 3439b50d902SRodney W. Grimes 3449b50d902SRodney W. Grimes static int 3459b50d902SRodney W. Grimes getchr() 3469b50d902SRodney W. Grimes { 3479b50d902SRodney W. Grimes if (!*gargv) 3489b50d902SRodney W. Grimes return ('\0'); 3499b50d902SRodney W. Grimes return ((int)**gargv++); 3509b50d902SRodney W. Grimes } 3519b50d902SRodney W. Grimes 3529b50d902SRodney W. Grimes static char * 3539b50d902SRodney W. Grimes getstr() 3549b50d902SRodney W. Grimes { 3559b50d902SRodney W. Grimes if (!*gargv) 3569b50d902SRodney W. Grimes return (""); 3579b50d902SRodney W. Grimes return (*gargv++); 3589b50d902SRodney W. Grimes } 3599b50d902SRodney W. Grimes 3609b50d902SRodney W. Grimes static char *Number = "+-.0123456789"; 3619b50d902SRodney W. Grimes static int 3629b50d902SRodney W. Grimes getint(ip) 3639b50d902SRodney W. Grimes int *ip; 3649b50d902SRodney W. Grimes { 36562a721e7SStefan Eßer quad_t val; 3669b50d902SRodney W. Grimes 36762a721e7SStefan Eßer if (getquad(&val)) 3689b50d902SRodney W. Grimes return (1); 36962a721e7SStefan Eßer if (val < INT_MIN || val > INT_MAX) { 3703b53d380SBruce Evans warnx3("%s: %s", *gargv, strerror(ERANGE)); 3719b50d902SRodney W. Grimes return (1); 3729b50d902SRodney W. Grimes } 37362a721e7SStefan Eßer *ip = (int)val; 3749b50d902SRodney W. Grimes return (0); 3759b50d902SRodney W. Grimes } 3769b50d902SRodney W. Grimes 3779b50d902SRodney W. Grimes static int 37862a721e7SStefan Eßer getquad(lp) 37962a721e7SStefan Eßer quad_t *lp; 3809b50d902SRodney W. Grimes { 38162a721e7SStefan Eßer quad_t val; 3829b50d902SRodney W. Grimes char *ep; 3839b50d902SRodney W. Grimes 3849b50d902SRodney W. Grimes if (!*gargv) { 3859b50d902SRodney W. Grimes *lp = 0; 3869b50d902SRodney W. Grimes return (0); 3879b50d902SRodney W. Grimes } 3889b50d902SRodney W. Grimes if (strchr(Number, **gargv)) { 3899b50d902SRodney W. Grimes errno = 0; 39062a721e7SStefan Eßer val = strtoq(*gargv, &ep, 0); 3919b50d902SRodney W. Grimes if (*ep != '\0') { 3923b53d380SBruce Evans warnx2("%s: illegal number", *gargv, NULL); 3939b50d902SRodney W. Grimes return (1); 3949b50d902SRodney W. Grimes } 3959b50d902SRodney W. Grimes if (errno == ERANGE) 39662a721e7SStefan Eßer if (val == QUAD_MAX) { 3973b53d380SBruce Evans warnx3("%s: %s", *gargv, strerror(ERANGE)); 3989b50d902SRodney W. Grimes return (1); 3999b50d902SRodney W. Grimes } 40062a721e7SStefan Eßer if (val == QUAD_MIN) { 4013b53d380SBruce Evans warnx3("%s: %s", *gargv, strerror(ERANGE)); 4029b50d902SRodney W. Grimes return (1); 4039b50d902SRodney W. Grimes } 4049b50d902SRodney W. Grimes 4059b50d902SRodney W. Grimes *lp = val; 4069b50d902SRodney W. Grimes ++gargv; 4079b50d902SRodney W. Grimes return (0); 4089b50d902SRodney W. Grimes } 4099b50d902SRodney W. Grimes *lp = (long)asciicode(); 4109b50d902SRodney W. Grimes return (0); 4119b50d902SRodney W. Grimes } 4129b50d902SRodney W. Grimes 4139b50d902SRodney W. Grimes static double 4149b50d902SRodney W. Grimes getdouble() 4159b50d902SRodney W. Grimes { 4169b50d902SRodney W. Grimes if (!*gargv) 4179b50d902SRodney W. Grimes return ((double)0); 4189b50d902SRodney W. Grimes if (strchr(Number, **gargv)) 4199b50d902SRodney W. Grimes return (atof(*gargv++)); 4209b50d902SRodney W. Grimes return ((double)asciicode()); 4219b50d902SRodney W. Grimes } 4229b50d902SRodney W. Grimes 4239b50d902SRodney W. Grimes static int 4249b50d902SRodney W. Grimes asciicode() 4259b50d902SRodney W. Grimes { 4269b50d902SRodney W. Grimes register int ch; 4279b50d902SRodney W. Grimes 4289b50d902SRodney W. Grimes ch = **gargv; 4299b50d902SRodney W. Grimes if (ch == '\'' || ch == '"') 4309b50d902SRodney W. Grimes ch = (*gargv)[1]; 4319b50d902SRodney W. Grimes ++gargv; 4329b50d902SRodney W. Grimes return (ch); 4339b50d902SRodney W. Grimes } 4349b50d902SRodney W. Grimes 4359b50d902SRodney W. Grimes static void 4369b50d902SRodney W. Grimes usage() 4379b50d902SRodney W. Grimes { 4389b50d902SRodney W. Grimes (void)fprintf(stderr, "usage: printf format [arg ...]\n"); 4399b50d902SRodney W. Grimes } 440