1c9aca921SXin LI /*- 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 * 4. Neither the name of the University nor the names of its contributors 149b50d902SRodney W. Grimes * may be used to endorse or promote products derived from this software 159b50d902SRodney W. Grimes * without specific prior written permission. 169b50d902SRodney W. Grimes * 179b50d902SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 189b50d902SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 199b50d902SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 209b50d902SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 219b50d902SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 229b50d902SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 239b50d902SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 249b50d902SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 259b50d902SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 269b50d902SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 279b50d902SRodney W. Grimes * SUCH DAMAGE. 289b50d902SRodney W. Grimes */ 299b50d902SRodney W. Grimes 301866e8abSJilles Tjoelker #ifndef SHELL 319b50d902SRodney W. Grimes #ifndef lint 323ec30b79SSteve Price static char const copyright[] = 339b50d902SRodney W. Grimes "@(#) Copyright (c) 1989, 1993\n\ 349b50d902SRodney W. Grimes The Regents of the University of California. All rights reserved.\n"; 359b50d902SRodney W. Grimes #endif /* not lint */ 369b50d902SRodney W. Grimes #endif 379b50d902SRodney W. Grimes 389b50d902SRodney W. Grimes #ifndef lint 39c9e05349SWarner Losh #if 0 403ec30b79SSteve Price static char const sccsid[] = "@(#)printf.c 8.1 (Berkeley) 7/20/93"; 41c9e05349SWarner Losh #endif 421ea7321bSMartin Cracauer static const char rcsid[] = 431ea7321bSMartin Cracauer "$FreeBSD$"; 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> 50d41d23e1SStefan Farfeleder #include <inttypes.h> 519b50d902SRodney W. Grimes #include <limits.h> 52c9aca921SXin LI #include <locale.h> 539b50d902SRodney W. Grimes #include <stdio.h> 549b50d902SRodney W. Grimes #include <stdlib.h> 559b50d902SRodney W. Grimes #include <string.h> 5667151650SXin LI #include <sysexits.h> 579d19feb5SSteve Price #include <unistd.h> 589b50d902SRodney W. Grimes 599b50d902SRodney W. Grimes #ifdef SHELL 609b50d902SRodney W. Grimes #define main printfcmd 61d9f93710SJoerg Wunsch #include "bltin/bltin.h" 623c6e4a5cSBen Smithurst #include "memalloc.h" 639897c45fSJilles Tjoelker #include "error.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 70bacab7d6STim J. Robbins #define PF(f, func) do { \ 71d72f654cSPeter Wemm char *b = NULL; \ 7298dd6386STim J. Robbins if (havewidth) \ 7398dd6386STim J. Robbins if (haveprec) \ 74d72f654cSPeter Wemm (void)asprintf(&b, f, fieldwidth, precision, func); \ 759b50d902SRodney W. Grimes else \ 76d72f654cSPeter Wemm (void)asprintf(&b, f, fieldwidth, func); \ 7798dd6386STim J. Robbins else if (haveprec) \ 78d72f654cSPeter Wemm (void)asprintf(&b, f, precision, func); \ 799b50d902SRodney W. Grimes else \ 80d72f654cSPeter Wemm (void)asprintf(&b, f, func); \ 81d72f654cSPeter Wemm if (b) { \ 82d72f654cSPeter Wemm (void)fputs(b, stdout); \ 83d72f654cSPeter Wemm free(b); \ 84d72f654cSPeter Wemm } \ 85bacab7d6STim J. Robbins } while (0) 869b50d902SRodney W. Grimes 87d3cb5dedSWarner Losh static int asciicode(void); 889897c45fSJilles Tjoelker static char *printf_doformat(char *, int *); 893ec96cafSStefan Farfeleder static int escape(char *, int, size_t *); 90d3cb5dedSWarner Losh static int getchr(void); 91fd757c50SDavid Schultz static int getfloating(long double *, int); 92d3cb5dedSWarner Losh static int getint(int *); 93d41d23e1SStefan Farfeleder static int getnum(intmax_t *, uintmax_t *, int); 94bacab7d6STim J. Robbins static const char 95bacab7d6STim J. Robbins *getstr(void); 969180853bSXin LI static char *mknum(char *, char); 97d3cb5dedSWarner Losh static void usage(void); 989b50d902SRodney W. Grimes 999b50d902SRodney W. Grimes static char **gargv; 1009b50d902SRodney W. Grimes 1019b50d902SRodney W. Grimes int 102f4ac32deSDavid Malone main(int argc, char *argv[]) 1039b50d902SRodney W. Grimes { 1043ec96cafSStefan Farfeleder size_t len; 10502a4a3f5SXin LI int chopped, end, rval; 106fbd08684SStefan Farfeleder char *format, *fmt, *start; 1079b50d902SRodney W. Grimes 1081866e8abSJilles Tjoelker #ifndef SHELL 109*69be0c5eSXin LI (void) setlocale(LC_ALL, ""); 110dc7d8c99SAndrey A. Chernov #endif 1119897c45fSJilles Tjoelker #ifdef SHELL 1129897c45fSJilles Tjoelker optreset = 1; optind = 1; opterr = 0; /* initialize getopt */ 1139897c45fSJilles Tjoelker #endif 11402a4a3f5SXin LI /* Skip argv[0] which is the process name */ 11502a4a3f5SXin LI argv++; 11602a4a3f5SXin LI argc--; 11702a4a3f5SXin LI 11802a4a3f5SXin LI /* Need to accept/ignore "--" option. */ 11902a4a3f5SXin LI if (argc >= 1 && strcmp(*argv, "--") == 0) { 12002a4a3f5SXin LI argc--; 12102a4a3f5SXin LI argv++; 1229b50d902SRodney W. Grimes } 1239b50d902SRodney W. Grimes 1249b50d902SRodney W. Grimes if (argc < 1) { 1259b50d902SRodney W. Grimes usage(); 12667151650SXin LI /* NOTREACHED */ 1279b50d902SRodney W. Grimes } 1289b50d902SRodney W. Grimes 1299897c45fSJilles Tjoelker #ifdef SHELL 1309897c45fSJilles Tjoelker INTOFF; 1319897c45fSJilles Tjoelker #endif 1329b50d902SRodney W. Grimes /* 1339b50d902SRodney W. Grimes * Basic algorithm is to scan the format string for conversion 1349b50d902SRodney W. Grimes * specifications -- once one is found, find out if the field 1359b50d902SRodney W. Grimes * width or precision is a '*'; if it is, gather up value. Note, 1369b50d902SRodney W. Grimes * format strings are reused as necessary to use up the provided 1379b50d902SRodney W. Grimes * arguments, arguments of zero/null string are provided to use 1389b50d902SRodney W. Grimes * up the format string. 1399b50d902SRodney W. Grimes */ 1403ec96cafSStefan Farfeleder fmt = format = *argv; 1413ec96cafSStefan Farfeleder chopped = escape(fmt, 1, &len); /* backslash interpretation */ 142fbd08684SStefan Farfeleder rval = end = 0; 1439b50d902SRodney W. Grimes gargv = ++argv; 1449b50d902SRodney W. Grimes for (;;) { 145fbd08684SStefan Farfeleder start = fmt; 1463ec96cafSStefan Farfeleder while (fmt < format + len) { 147fbd08684SStefan Farfeleder if (fmt[0] == '%') { 148fbd08684SStefan Farfeleder fwrite(start, 1, fmt - start, stdout); 149fbd08684SStefan Farfeleder if (fmt[1] == '%') { 1509b50d902SRodney W. Grimes /* %% prints a % */ 151fbd08684SStefan Farfeleder putchar('%'); 152fbd08684SStefan Farfeleder fmt += 2; 153fbd08684SStefan Farfeleder } else { 1549897c45fSJilles Tjoelker fmt = printf_doformat(fmt, &rval); 1559897c45fSJilles Tjoelker if (fmt == NULL) { 1569897c45fSJilles Tjoelker #ifdef SHELL 1579897c45fSJilles Tjoelker INTON; 1589897c45fSJilles Tjoelker #endif 159fbd08684SStefan Farfeleder return (1); 1609897c45fSJilles Tjoelker } 161fbd08684SStefan Farfeleder end = 0; 1629b50d902SRodney W. Grimes } 163fbd08684SStefan Farfeleder start = fmt; 164fbd08684SStefan Farfeleder } else 165fbd08684SStefan Farfeleder fmt++; 1669b50d902SRodney W. Grimes } 1679b50d902SRodney W. Grimes 168fbd08684SStefan Farfeleder if (end == 1) { 169fbd08684SStefan Farfeleder warnx1("missing format character", NULL, NULL); 1709897c45fSJilles Tjoelker #ifdef SHELL 1719897c45fSJilles Tjoelker INTON; 1729897c45fSJilles Tjoelker #endif 173fbd08684SStefan Farfeleder return (1); 174fbd08684SStefan Farfeleder } 175fbd08684SStefan Farfeleder fwrite(start, 1, fmt - start, stdout); 1769897c45fSJilles Tjoelker if (chopped || !*gargv) { 1779897c45fSJilles Tjoelker #ifdef SHELL 1789897c45fSJilles Tjoelker INTON; 1799897c45fSJilles Tjoelker #endif 180fbd08684SStefan Farfeleder return (rval); 1819897c45fSJilles Tjoelker } 182fbd08684SStefan Farfeleder /* Restart at the beginning of the format string. */ 183fbd08684SStefan Farfeleder fmt = format; 184fbd08684SStefan Farfeleder end = 1; 185fbd08684SStefan Farfeleder } 186fbd08684SStefan Farfeleder /* NOTREACHED */ 187fbd08684SStefan Farfeleder } 188fbd08684SStefan Farfeleder 189fbd08684SStefan Farfeleder 190fbd08684SStefan Farfeleder static char * 1919897c45fSJilles Tjoelker printf_doformat(char *start, int *rval) 192fbd08684SStefan Farfeleder { 193fbd08684SStefan Farfeleder static const char skip1[] = "#'-+ 0"; 194fbd08684SStefan Farfeleder static const char skip2[] = "0123456789"; 195fbd08684SStefan Farfeleder char *fmt; 196fbd08684SStefan Farfeleder int fieldwidth, haveprec, havewidth, mod_ldbl, precision; 197fbd08684SStefan Farfeleder char convch, nextch; 198fbd08684SStefan Farfeleder 199fbd08684SStefan Farfeleder fmt = start + 1; 2009b50d902SRodney W. Grimes /* skip to field width */ 2010ba01198SStefan Farfeleder fmt += strspn(fmt, skip1); 2029b50d902SRodney W. Grimes if (*fmt == '*') { 2039b50d902SRodney W. Grimes if (getint(&fieldwidth)) 204fbd08684SStefan Farfeleder return (NULL); 20598dd6386STim J. Robbins havewidth = 1; 206d867cefdSJoerg Wunsch ++fmt; 207d867cefdSJoerg Wunsch } else { 20898dd6386STim J. Robbins havewidth = 0; 2099b50d902SRodney W. Grimes 2109b50d902SRodney W. Grimes /* skip to possible '.', get following precision */ 2110ba01198SStefan Farfeleder fmt += strspn(fmt, skip2); 212d867cefdSJoerg Wunsch } 213d867cefdSJoerg Wunsch if (*fmt == '.') { 214d867cefdSJoerg Wunsch /* precision present? */ 2159b50d902SRodney W. Grimes ++fmt; 2169b50d902SRodney W. Grimes if (*fmt == '*') { 2179b50d902SRodney W. Grimes if (getint(&precision)) 218fbd08684SStefan Farfeleder return (NULL); 21998dd6386STim J. Robbins haveprec = 1; 220d867cefdSJoerg Wunsch ++fmt; 221d867cefdSJoerg Wunsch } else { 22298dd6386STim J. Robbins haveprec = 0; 2239b50d902SRodney W. Grimes 2249b50d902SRodney W. Grimes /* skip to conversion char */ 2250ba01198SStefan Farfeleder fmt += strspn(fmt, skip2); 226d867cefdSJoerg Wunsch } 227d867cefdSJoerg Wunsch } else 22898dd6386STim J. Robbins haveprec = 0; 2299b50d902SRodney W. Grimes if (!*fmt) { 2303b53d380SBruce Evans warnx1("missing format character", NULL, NULL); 231fbd08684SStefan Farfeleder return (NULL); 2329b50d902SRodney W. Grimes } 2339b50d902SRodney W. Grimes 234fd757c50SDavid Schultz /* 235fd757c50SDavid Schultz * Look for a length modifier. POSIX doesn't have these, so 236fd757c50SDavid Schultz * we only support them for floating-point conversions, which 237fd757c50SDavid Schultz * are extensions. This is useful because the L modifier can 238fd757c50SDavid Schultz * be used to gain extra range and precision, while omitting 239fd757c50SDavid Schultz * it is more likely to produce consistent results on different 240fd757c50SDavid Schultz * architectures. This is not so important for integers 241fd757c50SDavid Schultz * because overflow is the only bad thing that can happen to 242fd757c50SDavid Schultz * them, but consider the command printf %a 1.1 243fd757c50SDavid Schultz */ 244fd757c50SDavid Schultz if (*fmt == 'L') { 245fd757c50SDavid Schultz mod_ldbl = 1; 246fd757c50SDavid Schultz fmt++; 247fd757c50SDavid Schultz if (!strchr("aAeEfFgG", *fmt)) { 248fd757c50SDavid Schultz warnx2("bad modifier L for %%%c", *fmt, NULL); 249fbd08684SStefan Farfeleder return (NULL); 250fd757c50SDavid Schultz } 251fd757c50SDavid Schultz } else { 252fd757c50SDavid Schultz mod_ldbl = 0; 253fd757c50SDavid Schultz } 254fd757c50SDavid Schultz 2559b50d902SRodney W. Grimes convch = *fmt; 2569b50d902SRodney W. Grimes nextch = *++fmt; 2579b50d902SRodney W. Grimes *fmt = '\0'; 2589b50d902SRodney W. Grimes switch (convch) { 259ab5a295bSJuli Mallett case 'b': { 2603ec96cafSStefan Farfeleder size_t len; 261ab5a295bSJuli Mallett char *p; 262ab5a295bSJuli Mallett int getout; 263ab5a295bSJuli Mallett 264bacab7d6STim J. Robbins #ifdef SHELL 265bacab7d6STim J. Robbins p = savestr(getstr()); 266bacab7d6STim J. Robbins #else 267bacab7d6STim J. Robbins p = strdup(getstr()); 268bacab7d6STim J. Robbins #endif 269bacab7d6STim J. Robbins if (p == NULL) { 270bacab7d6STim J. Robbins warnx2("%s", strerror(ENOMEM), NULL); 271fbd08684SStefan Farfeleder return (NULL); 272bacab7d6STim J. Robbins } 2733ec96cafSStefan Farfeleder getout = escape(p, 0, &len); 274ab5a295bSJuli Mallett *(fmt - 1) = 's'; 275bacab7d6STim J. Robbins PF(start, p); 276ab5a295bSJuli Mallett *(fmt - 1) = 'b'; 277bacab7d6STim J. Robbins #ifdef SHELL 278bacab7d6STim J. Robbins ckfree(p); 279bacab7d6STim J. Robbins #else 280ab5a295bSJuli Mallett free(p); 281bacab7d6STim J. Robbins #endif 282ab5a295bSJuli Mallett if (getout) 283fbd08684SStefan Farfeleder return (fmt); 284ab5a295bSJuli Mallett break; 285ab5a295bSJuli Mallett } 2869b50d902SRodney W. Grimes case 'c': { 2879b50d902SRodney W. Grimes char p; 2889b50d902SRodney W. Grimes 2899b50d902SRodney W. Grimes p = getchr(); 2909b50d902SRodney W. Grimes PF(start, p); 2919b50d902SRodney W. Grimes break; 2929b50d902SRodney W. Grimes } 2939b50d902SRodney W. Grimes case 's': { 29445af1a4cSDavid Malone const char *p; 2959b50d902SRodney W. Grimes 2969b50d902SRodney W. Grimes p = getstr(); 2979b50d902SRodney W. Grimes PF(start, p); 2989b50d902SRodney W. Grimes break; 2999b50d902SRodney W. Grimes } 3009b50d902SRodney W. Grimes case 'd': case 'i': case 'o': case 'u': case 'x': case 'X': { 3019b50d902SRodney W. Grimes char *f; 302d41d23e1SStefan Farfeleder intmax_t val; 303d41d23e1SStefan Farfeleder uintmax_t uval; 304bacab7d6STim J. Robbins int signedconv; 3059b50d902SRodney W. Grimes 306bacab7d6STim J. Robbins signedconv = (convch == 'd' || convch == 'i'); 307d41d23e1SStefan Farfeleder if ((f = mknum(start, convch)) == NULL) 308fbd08684SStefan Farfeleder return (NULL); 309d41d23e1SStefan Farfeleder if (getnum(&val, &uval, signedconv)) 310fbd08684SStefan Farfeleder *rval = 1; 311bacab7d6STim J. Robbins if (signedconv) 312bacab7d6STim J. Robbins PF(f, val); 313bacab7d6STim J. Robbins else 314bacab7d6STim J. Robbins PF(f, uval); 3159b50d902SRodney W. Grimes break; 3169b50d902SRodney W. Grimes } 31703b2eaacSDavid Schultz case 'e': case 'E': 31803b2eaacSDavid Schultz case 'f': case 'F': 31903b2eaacSDavid Schultz case 'g': case 'G': 32003b2eaacSDavid Schultz case 'a': case 'A': { 321fd757c50SDavid Schultz long double p; 3229b50d902SRodney W. Grimes 323fd757c50SDavid Schultz if (getfloating(&p, mod_ldbl)) 324fbd08684SStefan Farfeleder *rval = 1; 325fd757c50SDavid Schultz if (mod_ldbl) 3269b50d902SRodney W. Grimes PF(start, p); 327fd757c50SDavid Schultz else 328fd757c50SDavid Schultz PF(start, (double)p); 3299b50d902SRodney W. Grimes break; 3309b50d902SRodney W. Grimes } 3319b50d902SRodney W. Grimes default: 3323b53d380SBruce Evans warnx2("illegal format character %c", convch, NULL); 333fbd08684SStefan Farfeleder return (NULL); 3349b50d902SRodney W. Grimes } 3359b50d902SRodney W. Grimes *fmt = nextch; 336fbd08684SStefan Farfeleder return (fmt); 3379b50d902SRodney W. Grimes } 3389b50d902SRodney W. Grimes 3399b50d902SRodney W. Grimes static char * 3409180853bSXin LI mknum(char *str, char ch) 3419b50d902SRodney W. Grimes { 3423c6e4a5cSBen Smithurst static char *copy; 3433c6e4a5cSBen Smithurst static size_t copy_size; 3443c6e4a5cSBen Smithurst char *newcopy; 345bacab7d6STim J. Robbins size_t len, newlen; 3469b50d902SRodney W. Grimes 3479b50d902SRodney W. Grimes len = strlen(str) + 2; 3483c6e4a5cSBen Smithurst if (len > copy_size) { 3493c6e4a5cSBen Smithurst newlen = ((len + 1023) >> 10) << 10; 3503c6e4a5cSBen Smithurst #ifdef SHELL 3513c6e4a5cSBen Smithurst if ((newcopy = ckrealloc(copy, newlen)) == NULL) 3523c6e4a5cSBen Smithurst #else 3533c6e4a5cSBen Smithurst if ((newcopy = realloc(copy, newlen)) == NULL) 3543c6e4a5cSBen Smithurst #endif 355bacab7d6STim J. Robbins { 356bacab7d6STim J. Robbins warnx2("%s", strerror(ENOMEM), NULL); 3573c6e4a5cSBen Smithurst return (NULL); 358bacab7d6STim J. Robbins } 3593c6e4a5cSBen Smithurst copy = newcopy; 3603c6e4a5cSBen Smithurst copy_size = newlen; 3613c6e4a5cSBen Smithurst } 36262a721e7SStefan Eßer 3639b50d902SRodney W. Grimes memmove(copy, str, len - 3); 364d41d23e1SStefan Farfeleder copy[len - 3] = 'j'; 3659b50d902SRodney W. Grimes copy[len - 2] = ch; 3669b50d902SRodney W. Grimes copy[len - 1] = '\0'; 3679b50d902SRodney W. Grimes return (copy); 3689b50d902SRodney W. Grimes } 3699b50d902SRodney W. Grimes 370ab5a295bSJuli Mallett static int 3713ec96cafSStefan Farfeleder escape(char *fmt, int percent, size_t *len) 3729b50d902SRodney W. Grimes { 3733ec96cafSStefan Farfeleder char *save, *store; 374f4ac32deSDavid Malone int value, c; 3759b50d902SRodney W. Grimes 3763ec96cafSStefan Farfeleder for (save = store = fmt; (c = *fmt); ++fmt, ++store) { 3779b50d902SRodney W. Grimes if (c != '\\') { 3789b50d902SRodney W. Grimes *store = c; 3799b50d902SRodney W. Grimes continue; 3809b50d902SRodney W. Grimes } 3819b50d902SRodney W. Grimes switch (*++fmt) { 3829b50d902SRodney W. Grimes case '\0': /* EOS, user error */ 3839b50d902SRodney W. Grimes *store = '\\'; 3849b50d902SRodney W. Grimes *++store = '\0'; 3853ec96cafSStefan Farfeleder *len = store - save; 386ab5a295bSJuli Mallett return (0); 3879b50d902SRodney W. Grimes case '\\': /* backslash */ 3889b50d902SRodney W. Grimes case '\'': /* single quote */ 3899b50d902SRodney W. Grimes *store = *fmt; 3909b50d902SRodney W. Grimes break; 3919b50d902SRodney W. Grimes case 'a': /* bell/alert */ 392f3f148d2SStefan Farfeleder *store = '\a'; 3939b50d902SRodney W. Grimes break; 3949b50d902SRodney W. Grimes case 'b': /* backspace */ 3959b50d902SRodney W. Grimes *store = '\b'; 3969b50d902SRodney W. Grimes break; 397ab5a295bSJuli Mallett case 'c': 398ab5a295bSJuli Mallett *store = '\0'; 3993ec96cafSStefan Farfeleder *len = store - save; 400ab5a295bSJuli Mallett return (1); 4019b50d902SRodney W. Grimes case 'f': /* form-feed */ 4029b50d902SRodney W. Grimes *store = '\f'; 4039b50d902SRodney W. Grimes break; 4049b50d902SRodney W. Grimes case 'n': /* newline */ 4059b50d902SRodney W. Grimes *store = '\n'; 4069b50d902SRodney W. Grimes break; 4079b50d902SRodney W. Grimes case 'r': /* carriage-return */ 4089b50d902SRodney W. Grimes *store = '\r'; 4099b50d902SRodney W. Grimes break; 4109b50d902SRodney W. Grimes case 't': /* horizontal tab */ 4119b50d902SRodney W. Grimes *store = '\t'; 4129b50d902SRodney W. Grimes break; 4139b50d902SRodney W. Grimes case 'v': /* vertical tab */ 414f3f148d2SStefan Farfeleder *store = '\v'; 4159b50d902SRodney W. Grimes break; 4169b50d902SRodney W. Grimes /* octal constant */ 4179b50d902SRodney W. Grimes case '0': case '1': case '2': case '3': 4189b50d902SRodney W. Grimes case '4': case '5': case '6': case '7': 4199d65050eSDavid Schultz c = (!percent && *fmt == '0') ? 4 : 3; 4209d65050eSDavid Schultz for (value = 0; 4219b50d902SRodney W. Grimes c-- && *fmt >= '0' && *fmt <= '7'; ++fmt) { 4229b50d902SRodney W. Grimes value <<= 3; 4239b50d902SRodney W. Grimes value += *fmt - '0'; 4249b50d902SRodney W. Grimes } 4259b50d902SRodney W. Grimes --fmt; 42612e8db40STim J. Robbins if (percent && value == '%') { 42737fd4590STim J. Robbins *store++ = '%'; 42837fd4590STim J. Robbins *store = '%'; 42937fd4590STim J. Robbins } else 4309b50d902SRodney W. Grimes *store = value; 4319b50d902SRodney W. Grimes break; 4329b50d902SRodney W. Grimes default: 4339b50d902SRodney W. Grimes *store = *fmt; 4349b50d902SRodney W. Grimes break; 4359b50d902SRodney W. Grimes } 4369b50d902SRodney W. Grimes } 4379b50d902SRodney W. Grimes *store = '\0'; 4383ec96cafSStefan Farfeleder *len = store - save; 439ab5a295bSJuli Mallett return (0); 4409b50d902SRodney W. Grimes } 4419b50d902SRodney W. Grimes 4429b50d902SRodney W. Grimes static int 443f4ac32deSDavid Malone getchr(void) 4449b50d902SRodney W. Grimes { 4459b50d902SRodney W. Grimes if (!*gargv) 4469b50d902SRodney W. Grimes return ('\0'); 4479b50d902SRodney W. Grimes return ((int)**gargv++); 4489b50d902SRodney W. Grimes } 4499b50d902SRodney W. Grimes 45045af1a4cSDavid Malone static const char * 451f4ac32deSDavid Malone getstr(void) 4529b50d902SRodney W. Grimes { 4539b50d902SRodney W. Grimes if (!*gargv) 4549b50d902SRodney W. Grimes return (""); 4559b50d902SRodney W. Grimes return (*gargv++); 4569b50d902SRodney W. Grimes } 4579b50d902SRodney W. Grimes 4589b50d902SRodney W. Grimes static int 459f4ac32deSDavid Malone getint(int *ip) 4609b50d902SRodney W. Grimes { 461d41d23e1SStefan Farfeleder intmax_t val; 462d41d23e1SStefan Farfeleder uintmax_t uval; 463bacab7d6STim J. Robbins int rval; 4649b50d902SRodney W. Grimes 465d41d23e1SStefan Farfeleder if (getnum(&val, &uval, 1)) 4669b50d902SRodney W. Grimes return (1); 467bacab7d6STim J. Robbins rval = 0; 468bacab7d6STim J. Robbins if (val < INT_MIN || val > INT_MAX) { 4693b53d380SBruce Evans warnx3("%s: %s", *gargv, strerror(ERANGE)); 470bacab7d6STim J. Robbins rval = 1; 471bacab7d6STim J. Robbins } 47262a721e7SStefan Eßer *ip = (int)val; 473bacab7d6STim J. Robbins return (rval); 4749b50d902SRodney W. Grimes } 4759b50d902SRodney W. Grimes 4769b50d902SRodney W. Grimes static int 477d41d23e1SStefan Farfeleder getnum(intmax_t *ip, uintmax_t *uip, int signedconv) 4789b50d902SRodney W. Grimes { 4799b50d902SRodney W. Grimes char *ep; 480bacab7d6STim J. Robbins int rval; 4819b50d902SRodney W. Grimes 4829b50d902SRodney W. Grimes if (!*gargv) { 483d41d23e1SStefan Farfeleder *ip = 0; 4849b50d902SRodney W. Grimes return (0); 4859b50d902SRodney W. Grimes } 486ab5a295bSJuli Mallett if (**gargv == '"' || **gargv == '\'') { 487bacab7d6STim J. Robbins if (signedconv) 488d41d23e1SStefan Farfeleder *ip = asciicode(); 489bacab7d6STim J. Robbins else 490d41d23e1SStefan Farfeleder *uip = asciicode(); 4919b50d902SRodney W. Grimes return (0); 4929b50d902SRodney W. Grimes } 493bacab7d6STim J. Robbins rval = 0; 494ab5a295bSJuli Mallett errno = 0; 495bacab7d6STim J. Robbins if (signedconv) 496d41d23e1SStefan Farfeleder *ip = strtoimax(*gargv, &ep, 0); 497bacab7d6STim J. Robbins else 498d41d23e1SStefan Farfeleder *uip = strtoumax(*gargv, &ep, 0); 499bacab7d6STim J. Robbins if (ep == *gargv) { 500ab5a295bSJuli Mallett warnx2("%s: expected numeric value", *gargv, NULL); 501bacab7d6STim J. Robbins rval = 1; 502bacab7d6STim J. Robbins } 503bacab7d6STim J. Robbins else if (*ep != '\0') { 504ab5a295bSJuli Mallett warnx2("%s: not completely converted", *gargv, NULL); 505bacab7d6STim J. Robbins rval = 1; 506bacab7d6STim J. Robbins } 507bacab7d6STim J. Robbins if (errno == ERANGE) { 508ab5a295bSJuli Mallett warnx3("%s: %s", *gargv, strerror(ERANGE)); 509bacab7d6STim J. Robbins rval = 1; 510bacab7d6STim J. Robbins } 511ab5a295bSJuli Mallett ++gargv; 512bacab7d6STim J. Robbins return (rval); 5139b50d902SRodney W. Grimes } 5149b50d902SRodney W. Grimes 515bacab7d6STim J. Robbins static int 516fd757c50SDavid Schultz getfloating(long double *dp, int mod_ldbl) 5179b50d902SRodney W. Grimes { 518ab5a295bSJuli Mallett char *ep; 519bacab7d6STim J. Robbins int rval; 520ab5a295bSJuli Mallett 5215ec2b8dcSStefan Farfeleder if (!*gargv) { 5225ec2b8dcSStefan Farfeleder *dp = 0.0; 523bacab7d6STim J. Robbins return (0); 5245ec2b8dcSStefan Farfeleder } 525ab5a295bSJuli Mallett if (**gargv == '"' || **gargv == '\'') { 526bacab7d6STim J. Robbins *dp = asciicode(); 527bacab7d6STim J. Robbins return (0); 528ab5a295bSJuli Mallett } 5298c423a99SColin Percival rval = 0; 530ab5a295bSJuli Mallett errno = 0; 531fd757c50SDavid Schultz if (mod_ldbl) 532fd757c50SDavid Schultz *dp = strtold(*gargv, &ep); 533fd757c50SDavid Schultz else 534bacab7d6STim J. Robbins *dp = strtod(*gargv, &ep); 535bacab7d6STim J. Robbins if (ep == *gargv) { 536ab5a295bSJuli Mallett warnx2("%s: expected numeric value", *gargv, NULL); 537bacab7d6STim J. Robbins rval = 1; 538bacab7d6STim J. Robbins } else if (*ep != '\0') { 539ab5a295bSJuli Mallett warnx2("%s: not completely converted", *gargv, NULL); 540bacab7d6STim J. Robbins rval = 1; 541bacab7d6STim J. Robbins } 542bacab7d6STim J. Robbins if (errno == ERANGE) { 543ab5a295bSJuli Mallett warnx3("%s: %s", *gargv, strerror(ERANGE)); 544bacab7d6STim J. Robbins rval = 1; 545bacab7d6STim J. Robbins } 546ab5a295bSJuli Mallett ++gargv; 547bacab7d6STim J. Robbins return (rval); 5489b50d902SRodney W. Grimes } 5499b50d902SRodney W. Grimes 5509b50d902SRodney W. Grimes static int 551f4ac32deSDavid Malone asciicode(void) 5529b50d902SRodney W. Grimes { 553f4ac32deSDavid Malone int ch; 5549b50d902SRodney W. Grimes 5559b50d902SRodney W. Grimes ch = **gargv; 5569b50d902SRodney W. Grimes if (ch == '\'' || ch == '"') 5579b50d902SRodney W. Grimes ch = (*gargv)[1]; 5589b50d902SRodney W. Grimes ++gargv; 5599b50d902SRodney W. Grimes return (ch); 5609b50d902SRodney W. Grimes } 5619b50d902SRodney W. Grimes 5629b50d902SRodney W. Grimes static void 563f4ac32deSDavid Malone usage(void) 5649b50d902SRodney W. Grimes { 565f682f10cSRuslan Ermilov (void)fprintf(stderr, "usage: printf format [arguments ...]\n"); 56667151650SXin LI exit(EX_USAGE); 5679b50d902SRodney W. Grimes } 568