]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - armsrc/printf.c
2 * Copyright (c) 1986, 1988, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 4. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * @(#)subr_prf.c 8.3 (Berkeley) 1/21/94
42 typedef uint32_t uintmax_t;
43 typedef int32_t intmax_t;
45 typedef unsigned char u_char
;
46 typedef unsigned int u_int
;
47 typedef unsigned long u_long
;
48 typedef unsigned short u_short
;
49 typedef unsigned long long u_quad_t
;
50 typedef long long quad_t
;
54 #define NBBY 8 /* number of bits in a byte */
56 char const hex2ascii_data
[] = "0123456789abcdefghijklmnopqrstuvwxyz";
57 #define hex2ascii(hex) (hex2ascii_data[hex])
58 #define toupper(c) ((c) - 0x20 * (((c) >= 'a') && ((c) <= 'z')))
60 /* Max number conversion buffer length: a u_quad_t in base 2, plus NUL byte. */
61 #define MAXNBUF (sizeof(intmax_t) * NBBY + 1)
64 * Put a NUL-terminated ASCII number (base <= 36) in a buffer in reverse
65 * order; return an optional length and a pointer to the last character
66 * written in the buffer (i.e., the first character of the string).
67 * The buffer pointed to by `nbuf' must have length >= MAXNBUF.
70 ksprintn(char *nbuf
, uintmax_t num
, int base
, int *lenp
, int upper
)
77 c
= hex2ascii(num
% base
);
78 *++p
= upper
? toupper(c
) : c
;
79 } while (num
/= base
);
86 * Scaled down version of printf(3).
88 * Two additional formats:
90 * The format %b is supported to decode error registers.
93 * printf("reg=%b\n", regval, "*");
95 * where is the output base expressed as a control character, e.g.
96 * \10 gives octal; \20 gives hex. Each arg is a sequence of characters,
97 * the first of which gives the bit number to be inspected (origin 1), and
98 * the next characters (up to a control character, i.e. a character <= 32),
99 * give the name of the register. Thus:
101 * kvprintf("reg=%b\n", 3, "\10\2BITTWO\1BITONE\n");
103 * would produce output:
107 * XXX: %D -- Hexdump, takes pointer and separator string:
108 * ("%6D", ptr, ":") -> XX:XX:XX:XX:XX:XX
109 * ("%*D", len, ptr, " " -> XX XX XX XX ...
112 kvsprintf(char const *fmt
, void *arg
, int radix
, va_list ap
)
114 #define PCHAR(c) {int cc=(c); *d++ = cc; retval++; }
117 const char *p
, *percent
, *q
;
121 int base
, lflag
, qflag
, tmp
, width
, ladjust
, sharpflag
, neg
, sign
, dot
;
122 int cflag
, hflag
, jflag
, tflag
, zflag
;
125 int stop
= 0, retval
= 0;
131 fmt
= "(fmt null)\n";
133 if (radix
< 2 || radix
> 36)
139 while ((ch
= (u_char
)*fmt
++) != '%' || stop
) {
145 qflag
= 0; lflag
= 0; ladjust
= 0; sharpflag
= 0; neg
= 0;
146 sign
= 0; dot
= 0; dwidth
= 0; upper
= 0;
147 cflag
= 0; hflag
= 0; jflag
= 0; tflag
= 0; zflag
= 0;
148 reswitch
: switch (ch
= (u_char
)*fmt
++) {
166 width
= va_arg(ap
, int);
172 dwidth
= va_arg(ap
, int);
180 case '1': case '2': case '3': case '4':
181 case '5': case '6': case '7': case '8': case '9':
182 for (n
= 0;; ++fmt
) {
183 n
= n
* 10 + ch
- '0';
185 if (ch
< '0' || ch
> '9')
194 num
= (u_int
)va_arg(ap
, int);
195 p
= va_arg(ap
, char *);
196 for (q
= ksprintn(nbuf
, num
, *p
++, NULL
, 0); *q
;)
204 if (num
& (1 << (n
- 1))) {
205 PCHAR(tmp
? ',' : '<');
206 for (; (n
= *p
) > ' '; ++p
)
210 for (; *p
> ' '; ++p
)
217 PCHAR(va_arg(ap
, int));
220 up
= va_arg(ap
, u_char
*);
221 p
= va_arg(ap
, char *);
225 PCHAR(hex2ascii(*up
>> 4));
226 PCHAR(hex2ascii(*up
& 0x0f));
257 *(va_arg(ap
, intmax_t *)) = retval
;
259 *(va_arg(ap
, quad_t
*)) = retval
;
261 *(va_arg(ap
, long *)) = retval
;
263 *(va_arg(ap
, size_t *)) = retval
;
265 *(va_arg(ap
, short *)) = retval
;
267 *(va_arg(ap
, char *)) = retval
;
269 *(va_arg(ap
, int *)) = retval
;
276 sharpflag
= (width
== 0);
278 num
= (uintptr_t)va_arg(ap
, void *);
289 p
= va_arg(ap
, char *);
295 for (n
= 0; n
< dwidth
&& p
[n
]; n
++)
300 if (!ladjust
&& width
> 0)
305 if (ladjust
&& width
> 0)
330 num
= va_arg(ap
, uintmax_t);
332 num
= va_arg(ap
, u_quad_t
);
334 num
= va_arg(ap
, ptrdiff_t);
336 num
= va_arg(ap
, u_long
);
338 num
= va_arg(ap
, size_t);
340 num
= (u_short
)va_arg(ap
, int);
342 num
= (u_char
)va_arg(ap
, int);
344 num
= va_arg(ap
, u_int
);
348 num
= va_arg(ap
, intmax_t);
350 num
= va_arg(ap
, quad_t
);
352 num
= va_arg(ap
, ptrdiff_t);
354 num
= va_arg(ap
, long);
356 num
= va_arg(ap
, ssize_t
);
358 num
= (short)va_arg(ap
, int);
360 num
= (char)va_arg(ap
, int);
362 num
= va_arg(ap
, int);
364 if (sign
&& (intmax_t)num
< 0) {
366 num
= -(intmax_t)num
;
368 p
= ksprintn(nbuf
, num
, base
, &tmp
, upper
);
369 if (sharpflag
&& num
!= 0) {
378 if (!ladjust
&& padc
!= '0' && width
379 && (width
-= tmp
) > 0)
384 if (sharpflag
&& num
!= 0) {
387 } else if (base
== 16) {
392 if (!ladjust
&& width
&& (width
-= tmp
) > 0)
399 if (ladjust
&& width
&& (width
-= tmp
) > 0)
405 while (percent
< fmt
)
408 * Since we ignore an formatting argument it is no
409 * longer safe to obey the remaining formatting
410 * arguments as the arguments will no longer match
422 int vsprintf(char *dest
, const char *fmt
, va_list ap
)
424 return kvsprintf(fmt
, dest
, 10, ap
);
428 sprintf(char *dest
, const char *fmt
, ...)
430 /* http://www.pagetable.com/?p=298 */
435 retval
= kvsprintf(fmt
, dest
, 10, ap
);