/*- * Copyright (c) 1991 The Regents of the University of California. * All rights reserved. * * %sccs.include.redist.c% * * @(#)printf.c 5.2 (Berkeley) 05/03/91 */ /* * Scaled down version of printf(3). * * Used to print diagnostic information directly on the console tty. Since * it is not interrupt driven, all system activities are suspended. Printf * should not be used for chit-chat. * * One additional format: %b is supported to decode error registers. * Its usage is: * * printf("reg=%b\n", regval, "*"); * * where is the output base expressed as a control character, e.g. * \10 gives octal; \20 gives hex. Each arg is a sequence of characters, * the first of which gives the bit number to be inspected (origin 1), and * the next characters (up to a control character, i.e. a character <= 32), * give the name of the register. Thus: * * printf("reg=%b\n", 3, "\10\2BITTWO\1BITONE\n"); * * would produce output: * * reg=3 */ #if __STDC__ #include #else #include #endif static void abort(){} /* Needed by stdarg macros. */ static void number(); void #if __STDC__ printf(const char *fmt, ...) #else printf(fmt, va_alist) char *fmt; va_dcl #endif { register char *p; register int ch, n; unsigned long _ulong; int lflag, set; va_list ap; #if __STDC__ va_start(ap, fmt); #else va_start(ap); #endif for (;;) { while ((ch = *fmt++) != '%') { if (ch == '\0') return; putchar(ch); } lflag = 0; reswitch: switch (ch = *fmt++) { case 'l': lflag = 1; goto reswitch; case 'b': _ulong = va_arg(ap, int); p = va_arg(ap, char *); number(_ulong, *p++); if (!_ulong) break; for (set = 0; n = *p++;) { if (_ulong & (1 << (n - 1))) { putchar(set ? ',' : '<'); for (; (n = *p) > ' '; ++p) putchar(n); set = 1; } else for (; *p > ' '; ++p); } if (set) putchar('>'); break; case 'c': ch = va_arg(ap, int); putchar(ch & 0x7f); break; case 's': p = va_arg(ap, char *); while (ch = *p++) putchar(ch); break; case 'd': _ulong = lflag ? va_arg(ap, long) : va_arg(ap, int); if ((long)_ulong < 0) { putchar('-'); _ulong = -_ulong; } number(_ulong, 10); break; case 'o': _ulong = lflag ? va_arg(ap, long) : va_arg(ap, unsigned int); number(_ulong, 8); break; case 'u': _ulong = lflag ? va_arg(ap, long) : va_arg(ap, unsigned int); number(_ulong, 10); break; case 'x': _ulong = lflag ? va_arg(ap, long) : va_arg(ap, unsigned int); number(_ulong, 16); break; default: putchar('%'); if (lflag) putchar('l'); putchar(ch); } } va_end(ap); } static void number(_ulong, base) unsigned long _ulong; int base; { char *p, buf[11]; /* hold 2^32 in base 8 */ p = buf; do { *p++ = "0123456789abcdef"[_ulong % base]; } while (_ulong /= base); do { putchar(*--p); } while (p > buf); }