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 #ifdef SHELL 529b50d902SRodney W. Grimes #define EOF -1 539b50d902SRodney W. Grimes #else 549b50d902SRodney W. Grimes #include <stdio.h> 559b50d902SRodney W. Grimes #endif 569b50d902SRodney W. Grimes #include <stdlib.h> 579b50d902SRodney W. Grimes #include <string.h> 589b50d902SRodney W. Grimes 599b50d902SRodney W. Grimes /* 609b50d902SRodney W. Grimes * XXX 619b50d902SRodney W. Grimes * This *has* to go away. TK. 629b50d902SRodney W. Grimes */ 639b50d902SRodney W. Grimes #ifdef SHELL 649b50d902SRodney W. Grimes #define main printfcmd 659b50d902SRodney W. Grimes #define warnx(a, b, c) { \ 669b50d902SRodney W. Grimes char buf[64]; \ 679b50d902SRodney W. Grimes (void)sprintf(buf, sizeof(buf), a, b, c); \ 689b50d902SRodney W. Grimes error(buf); \ 699b50d902SRodney W. Grimes } 709b50d902SRodney W. Grimes #include "../../bin/sh/bltin/bltin.h" 719b50d902SRodney W. Grimes #endif 729b50d902SRodney W. Grimes 739b50d902SRodney W. Grimes #define PF(f, func) { \ 749b50d902SRodney W. Grimes if (fieldwidth) \ 759b50d902SRodney W. Grimes if (precision) \ 769b50d902SRodney W. Grimes (void)printf(f, fieldwidth, precision, func); \ 779b50d902SRodney W. Grimes else \ 789b50d902SRodney W. Grimes (void)printf(f, fieldwidth, func); \ 799b50d902SRodney W. Grimes else if (precision) \ 809b50d902SRodney W. Grimes (void)printf(f, precision, func); \ 819b50d902SRodney W. Grimes else \ 829b50d902SRodney W. Grimes (void)printf(f, func); \ 839b50d902SRodney W. Grimes } 849b50d902SRodney W. Grimes 859b50d902SRodney W. Grimes static int asciicode __P((void)); 869b50d902SRodney W. Grimes static void escape __P((char *)); 879b50d902SRodney W. Grimes static int getchr __P((void)); 889b50d902SRodney W. Grimes static double getdouble __P((void)); 899b50d902SRodney W. Grimes static int getint __P((int *)); 909b50d902SRodney W. Grimes static int getlong __P((long *)); 919b50d902SRodney W. Grimes static char *getstr __P((void)); 929b50d902SRodney W. Grimes static char *mklong __P((char *, int)); 939b50d902SRodney W. Grimes static void usage __P((void)); 949b50d902SRodney W. Grimes 959b50d902SRodney W. Grimes static char **gargv; 969b50d902SRodney W. Grimes 979b50d902SRodney W. Grimes int 989b50d902SRodney W. Grimes #ifdef BUILTIN 999b50d902SRodney W. Grimes progprintf(argc, argv) 1009b50d902SRodney W. Grimes #else 1019b50d902SRodney W. Grimes main(argc, argv) 1029b50d902SRodney W. Grimes #endif 1039b50d902SRodney W. Grimes int argc; 1049b50d902SRodney W. Grimes char *argv[]; 1059b50d902SRodney W. Grimes { 1069b50d902SRodney W. Grimes extern int optind; 1079b50d902SRodney W. Grimes static char *skip1, *skip2; 1089b50d902SRodney W. Grimes int ch, end, fieldwidth, precision; 1099b50d902SRodney W. Grimes char convch, nextch, *format, *fmt, *start; 1109b50d902SRodney W. Grimes 1119b50d902SRodney W. Grimes while ((ch = getopt(argc, argv, "")) != EOF) 1129b50d902SRodney W. Grimes switch (ch) { 1139b50d902SRodney W. Grimes case '?': 1149b50d902SRodney W. Grimes default: 1159b50d902SRodney W. Grimes usage(); 1169b50d902SRodney W. Grimes return (1); 1179b50d902SRodney W. Grimes } 1189b50d902SRodney W. Grimes argc -= optind; 1199b50d902SRodney W. Grimes argv += optind; 1209b50d902SRodney W. Grimes 1219b50d902SRodney W. Grimes if (argc < 1) { 1229b50d902SRodney W. Grimes usage(); 1239b50d902SRodney W. Grimes return (1); 1249b50d902SRodney W. Grimes } 1259b50d902SRodney W. Grimes 1269b50d902SRodney W. Grimes /* 1279b50d902SRodney W. Grimes * Basic algorithm is to scan the format string for conversion 1289b50d902SRodney W. Grimes * specifications -- once one is found, find out if the field 1299b50d902SRodney W. Grimes * width or precision is a '*'; if it is, gather up value. Note, 1309b50d902SRodney W. Grimes * format strings are reused as necessary to use up the provided 1319b50d902SRodney W. Grimes * arguments, arguments of zero/null string are provided to use 1329b50d902SRodney W. Grimes * up the format string. 1339b50d902SRodney W. Grimes */ 1349b50d902SRodney W. Grimes skip1 = "#-+ 0"; 1359b50d902SRodney W. Grimes skip2 = "*0123456789"; 1369b50d902SRodney W. Grimes 1379b50d902SRodney W. Grimes escape(fmt = format = *argv); /* backslash interpretation */ 1389b50d902SRodney W. Grimes gargv = ++argv; 1399b50d902SRodney W. Grimes for (;;) { 1409b50d902SRodney W. Grimes end = 0; 1419b50d902SRodney W. Grimes /* find next format specification */ 1429b50d902SRodney W. Grimes next: for (start = fmt;; ++fmt) { 1439b50d902SRodney W. Grimes if (!*fmt) { 1449b50d902SRodney W. Grimes /* avoid infinite loop */ 1459b50d902SRodney W. Grimes if (end == 1) { 1469b50d902SRodney W. Grimes warnx("missing format character", 1479b50d902SRodney W. Grimes NULL, NULL); 1489b50d902SRodney W. Grimes return (1); 1499b50d902SRodney W. Grimes } 1509b50d902SRodney W. Grimes end = 1; 1519b50d902SRodney W. Grimes if (fmt > start) 1529b50d902SRodney W. Grimes (void)printf("%s", start); 1539b50d902SRodney W. Grimes if (!*gargv) 1549b50d902SRodney W. Grimes return (0); 1559b50d902SRodney W. Grimes fmt = format; 1569b50d902SRodney W. Grimes goto next; 1579b50d902SRodney W. Grimes } 1589b50d902SRodney W. Grimes /* %% prints a % */ 1599b50d902SRodney W. Grimes if (*fmt == '%') { 1609b50d902SRodney W. Grimes if (*++fmt != '%') 1619b50d902SRodney W. Grimes break; 1629b50d902SRodney W. Grimes *fmt++ = '\0'; 1639b50d902SRodney W. Grimes (void)printf("%s", start); 1649b50d902SRodney W. Grimes goto next; 1659b50d902SRodney W. Grimes } 1669b50d902SRodney W. Grimes } 1679b50d902SRodney W. Grimes 1689b50d902SRodney W. Grimes /* skip to field width */ 1699b50d902SRodney W. Grimes for (; strchr(skip1, *fmt); ++fmt); 1709b50d902SRodney W. Grimes if (*fmt == '*') { 1719b50d902SRodney W. Grimes if (getint(&fieldwidth)) 1729b50d902SRodney W. Grimes return (1); 1739b50d902SRodney W. Grimes } else 1749b50d902SRodney W. Grimes fieldwidth = 0; 1759b50d902SRodney W. Grimes 1769b50d902SRodney W. Grimes /* skip to possible '.', get following precision */ 1779b50d902SRodney W. Grimes for (; strchr(skip2, *fmt); ++fmt); 1789b50d902SRodney W. Grimes if (*fmt == '.') 1799b50d902SRodney W. Grimes ++fmt; 1809b50d902SRodney W. Grimes if (*fmt == '*') { 1819b50d902SRodney W. Grimes if (getint(&precision)) 1829b50d902SRodney W. Grimes return (1); 1839b50d902SRodney W. Grimes } else 1849b50d902SRodney W. Grimes precision = 0; 1859b50d902SRodney W. Grimes 1869b50d902SRodney W. Grimes /* skip to conversion char */ 1879b50d902SRodney W. Grimes for (; strchr(skip2, *fmt); ++fmt); 1889b50d902SRodney W. Grimes if (!*fmt) { 1899b50d902SRodney W. Grimes warnx("missing format character", NULL, NULL); 1909b50d902SRodney W. Grimes return (1); 1919b50d902SRodney W. Grimes } 1929b50d902SRodney W. Grimes 1939b50d902SRodney W. Grimes convch = *fmt; 1949b50d902SRodney W. Grimes nextch = *++fmt; 1959b50d902SRodney W. Grimes *fmt = '\0'; 1969b50d902SRodney W. Grimes switch(convch) { 1979b50d902SRodney W. Grimes case 'c': { 1989b50d902SRodney W. Grimes char p; 1999b50d902SRodney W. Grimes 2009b50d902SRodney W. Grimes p = getchr(); 2019b50d902SRodney W. Grimes PF(start, p); 2029b50d902SRodney W. Grimes break; 2039b50d902SRodney W. Grimes } 2049b50d902SRodney W. Grimes case 's': { 2059b50d902SRodney W. Grimes char *p; 2069b50d902SRodney W. Grimes 2079b50d902SRodney W. Grimes p = getstr(); 2089b50d902SRodney W. Grimes PF(start, p); 2099b50d902SRodney W. Grimes break; 2109b50d902SRodney W. Grimes } 2119b50d902SRodney W. Grimes case 'd': case 'i': case 'o': case 'u': case 'x': case 'X': { 2129b50d902SRodney W. Grimes long p; 2139b50d902SRodney W. Grimes char *f; 2149b50d902SRodney W. Grimes 2159b50d902SRodney W. Grimes if ((f = mklong(start, convch)) == NULL) 2169b50d902SRodney W. Grimes return (1); 2179b50d902SRodney W. Grimes if (getlong(&p)) 2189b50d902SRodney W. Grimes return (1); 2199b50d902SRodney W. Grimes PF(f, p); 2209b50d902SRodney W. Grimes break; 2219b50d902SRodney W. Grimes } 2229b50d902SRodney W. Grimes case 'e': case 'E': case 'f': case 'g': case 'G': { 2239b50d902SRodney W. Grimes double p; 2249b50d902SRodney W. Grimes 2259b50d902SRodney W. Grimes p = getdouble(); 2269b50d902SRodney W. Grimes PF(start, p); 2279b50d902SRodney W. Grimes break; 2289b50d902SRodney W. Grimes } 2299b50d902SRodney W. Grimes default: 2309b50d902SRodney W. Grimes warnx("illegal format character", NULL, NULL); 2319b50d902SRodney W. Grimes return (1); 2329b50d902SRodney W. Grimes } 2339b50d902SRodney W. Grimes *fmt = nextch; 2349b50d902SRodney W. Grimes } 2359b50d902SRodney W. Grimes /* NOTREACHED */ 2369b50d902SRodney W. Grimes } 2379b50d902SRodney W. Grimes 2389b50d902SRodney W. Grimes static char * 2399b50d902SRodney W. Grimes mklong(str, ch) 2409b50d902SRodney W. Grimes char *str; 2419b50d902SRodney W. Grimes int ch; 2429b50d902SRodney W. Grimes { 2439b50d902SRodney W. Grimes static char copy[64]; 2449b50d902SRodney W. Grimes int len; 2459b50d902SRodney W. Grimes 2469b50d902SRodney W. Grimes len = strlen(str) + 2; 2479b50d902SRodney W. Grimes memmove(copy, str, len - 3); 2489b50d902SRodney W. Grimes copy[len - 3] = 'l'; 2499b50d902SRodney W. Grimes copy[len - 2] = ch; 2509b50d902SRodney W. Grimes copy[len - 1] = '\0'; 2519b50d902SRodney W. Grimes return (copy); 2529b50d902SRodney W. Grimes } 2539b50d902SRodney W. Grimes 2549b50d902SRodney W. Grimes static void 2559b50d902SRodney W. Grimes escape(fmt) 2569b50d902SRodney W. Grimes register char *fmt; 2579b50d902SRodney W. Grimes { 2589b50d902SRodney W. Grimes register char *store; 2599b50d902SRodney W. Grimes register int value, c; 2609b50d902SRodney W. Grimes 2619b50d902SRodney W. Grimes for (store = fmt; c = *fmt; ++fmt, ++store) { 2629b50d902SRodney W. Grimes if (c != '\\') { 2639b50d902SRodney W. Grimes *store = c; 2649b50d902SRodney W. Grimes continue; 2659b50d902SRodney W. Grimes } 2669b50d902SRodney W. Grimes switch (*++fmt) { 2679b50d902SRodney W. Grimes case '\0': /* EOS, user error */ 2689b50d902SRodney W. Grimes *store = '\\'; 2699b50d902SRodney W. Grimes *++store = '\0'; 2709b50d902SRodney W. Grimes return; 2719b50d902SRodney W. Grimes case '\\': /* backslash */ 2729b50d902SRodney W. Grimes case '\'': /* single quote */ 2739b50d902SRodney W. Grimes *store = *fmt; 2749b50d902SRodney W. Grimes break; 2759b50d902SRodney W. Grimes case 'a': /* bell/alert */ 2769b50d902SRodney W. Grimes *store = '\7'; 2779b50d902SRodney W. Grimes break; 2789b50d902SRodney W. Grimes case 'b': /* backspace */ 2799b50d902SRodney W. Grimes *store = '\b'; 2809b50d902SRodney W. Grimes break; 2819b50d902SRodney W. Grimes case 'f': /* form-feed */ 2829b50d902SRodney W. Grimes *store = '\f'; 2839b50d902SRodney W. Grimes break; 2849b50d902SRodney W. Grimes case 'n': /* newline */ 2859b50d902SRodney W. Grimes *store = '\n'; 2869b50d902SRodney W. Grimes break; 2879b50d902SRodney W. Grimes case 'r': /* carriage-return */ 2889b50d902SRodney W. Grimes *store = '\r'; 2899b50d902SRodney W. Grimes break; 2909b50d902SRodney W. Grimes case 't': /* horizontal tab */ 2919b50d902SRodney W. Grimes *store = '\t'; 2929b50d902SRodney W. Grimes break; 2939b50d902SRodney W. Grimes case 'v': /* vertical tab */ 2949b50d902SRodney W. Grimes *store = '\13'; 2959b50d902SRodney W. Grimes break; 2969b50d902SRodney W. Grimes /* octal constant */ 2979b50d902SRodney W. Grimes case '0': case '1': case '2': case '3': 2989b50d902SRodney W. Grimes case '4': case '5': case '6': case '7': 2999b50d902SRodney W. Grimes for (c = 3, value = 0; 3009b50d902SRodney W. Grimes c-- && *fmt >= '0' && *fmt <= '7'; ++fmt) { 3019b50d902SRodney W. Grimes value <<= 3; 3029b50d902SRodney W. Grimes value += *fmt - '0'; 3039b50d902SRodney W. Grimes } 3049b50d902SRodney W. Grimes --fmt; 3059b50d902SRodney W. Grimes *store = value; 3069b50d902SRodney W. Grimes break; 3079b50d902SRodney W. Grimes default: 3089b50d902SRodney W. Grimes *store = *fmt; 3099b50d902SRodney W. Grimes break; 3109b50d902SRodney W. Grimes } 3119b50d902SRodney W. Grimes } 3129b50d902SRodney W. Grimes *store = '\0'; 3139b50d902SRodney W. Grimes } 3149b50d902SRodney W. Grimes 3159b50d902SRodney W. Grimes static int 3169b50d902SRodney W. Grimes getchr() 3179b50d902SRodney W. Grimes { 3189b50d902SRodney W. Grimes if (!*gargv) 3199b50d902SRodney W. Grimes return ('\0'); 3209b50d902SRodney W. Grimes return ((int)**gargv++); 3219b50d902SRodney W. Grimes } 3229b50d902SRodney W. Grimes 3239b50d902SRodney W. Grimes static char * 3249b50d902SRodney W. Grimes getstr() 3259b50d902SRodney W. Grimes { 3269b50d902SRodney W. Grimes if (!*gargv) 3279b50d902SRodney W. Grimes return (""); 3289b50d902SRodney W. Grimes return (*gargv++); 3299b50d902SRodney W. Grimes } 3309b50d902SRodney W. Grimes 3319b50d902SRodney W. Grimes static char *Number = "+-.0123456789"; 3329b50d902SRodney W. Grimes static int 3339b50d902SRodney W. Grimes getint(ip) 3349b50d902SRodney W. Grimes int *ip; 3359b50d902SRodney W. Grimes { 3369b50d902SRodney W. Grimes long val; 3379b50d902SRodney W. Grimes 3389b50d902SRodney W. Grimes if (getlong(&val)) 3399b50d902SRodney W. Grimes return (1); 3409b50d902SRodney W. Grimes if (val > INT_MAX) { 3419b50d902SRodney W. Grimes warnx("%s: %s", *gargv, strerror(ERANGE)); 3429b50d902SRodney W. Grimes return (1); 3439b50d902SRodney W. Grimes } 3449b50d902SRodney W. Grimes *ip = val; 3459b50d902SRodney W. Grimes return (0); 3469b50d902SRodney W. Grimes } 3479b50d902SRodney W. Grimes 3489b50d902SRodney W. Grimes static int 3499b50d902SRodney W. Grimes getlong(lp) 3509b50d902SRodney W. Grimes long *lp; 3519b50d902SRodney W. Grimes { 3529b50d902SRodney W. Grimes long val; 3539b50d902SRodney W. Grimes char *ep; 3549b50d902SRodney W. Grimes 3559b50d902SRodney W. Grimes if (!*gargv) { 3569b50d902SRodney W. Grimes *lp = 0; 3579b50d902SRodney W. Grimes return (0); 3589b50d902SRodney W. Grimes } 3599b50d902SRodney W. Grimes if (strchr(Number, **gargv)) { 3609b50d902SRodney W. Grimes errno = 0; 3619b50d902SRodney W. Grimes val = strtol(*gargv, &ep, 0); 3629b50d902SRodney W. Grimes if (*ep != '\0') { 3639b50d902SRodney W. Grimes warnx("%s: illegal number", *gargv, NULL); 3649b50d902SRodney W. Grimes return (1); 3659b50d902SRodney W. Grimes } 3669b50d902SRodney W. Grimes if (errno == ERANGE) 3679b50d902SRodney W. Grimes if (val == LONG_MAX) { 3689b50d902SRodney W. Grimes warnx("%s: %s", *gargv, strerror(ERANGE)); 3699b50d902SRodney W. Grimes return (1); 3709b50d902SRodney W. Grimes } 3719b50d902SRodney W. Grimes if (val == LONG_MIN) { 3729b50d902SRodney W. Grimes warnx("%s: %s", *gargv, strerror(ERANGE)); 3739b50d902SRodney W. Grimes return (1); 3749b50d902SRodney W. Grimes } 3759b50d902SRodney W. Grimes 3769b50d902SRodney W. Grimes *lp = val; 3779b50d902SRodney W. Grimes ++gargv; 3789b50d902SRodney W. Grimes return (0); 3799b50d902SRodney W. Grimes } 3809b50d902SRodney W. Grimes *lp = (long)asciicode(); 3819b50d902SRodney W. Grimes return (0); 3829b50d902SRodney W. Grimes } 3839b50d902SRodney W. Grimes 3849b50d902SRodney W. Grimes static double 3859b50d902SRodney W. Grimes getdouble() 3869b50d902SRodney W. Grimes { 3879b50d902SRodney W. Grimes if (!*gargv) 3889b50d902SRodney W. Grimes return ((double)0); 3899b50d902SRodney W. Grimes if (strchr(Number, **gargv)) 3909b50d902SRodney W. Grimes return (atof(*gargv++)); 3919b50d902SRodney W. Grimes return ((double)asciicode()); 3929b50d902SRodney W. Grimes } 3939b50d902SRodney W. Grimes 3949b50d902SRodney W. Grimes static int 3959b50d902SRodney W. Grimes asciicode() 3969b50d902SRodney W. Grimes { 3979b50d902SRodney W. Grimes register int ch; 3989b50d902SRodney W. Grimes 3999b50d902SRodney W. Grimes ch = **gargv; 4009b50d902SRodney W. Grimes if (ch == '\'' || ch == '"') 4019b50d902SRodney W. Grimes ch = (*gargv)[1]; 4029b50d902SRodney W. Grimes ++gargv; 4039b50d902SRodney W. Grimes return (ch); 4049b50d902SRodney W. Grimes } 4059b50d902SRodney W. Grimes 4069b50d902SRodney W. Grimes static void 4079b50d902SRodney W. Grimes usage() 4089b50d902SRodney W. Grimes { 4099b50d902SRodney W. Grimes (void)fprintf(stderr, "usage: printf format [arg ...]\n"); 4109b50d902SRodney W. Grimes } 411