]>
git.saurik.com Git - apple/shell_cmds.git/blob - hexdump/conv.c
a10baf3b4f6fcb4413d87303afe8e31e6dce3df7
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 static const char sccsid
[] = "@(#)conv.c 8.1 (Berkeley) 6/6/93";
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD: src/usr.bin/hexdump/conv.c,v 1.8 2004/07/16 11:07:07 johan Exp $");
40 #include <sys/types.h>
53 conv_c(PR
*pr
, u_char
*p
, size_t bufsize
)
59 int converr
, pad
, width
;
60 char peekbuf
[MB_LEN_MAX
];
98 * Multibyte characters are disabled for hexdump(1) for backwards
99 * compatibility and consistency (none of its other output formats
100 * recognize them correctly).
103 if (odmode
&& MB_CUR_MAX
> 1) {
106 clen
= mbrtowc(&wc
, (const char *)p
, bufsize
, &pr
->mbstate
);
109 else if (clen
== (size_t)-1 || (clen
== (size_t)-2 &&
111 memset(&pr
->mbstate
, 0, sizeof(pr
->mbstate
));
115 } else if (clen
== (size_t)-2) {
117 * Incomplete character; peek ahead and see if we
121 bufsize
= peek(p
= (u_char
*)peekbuf
, MB_CUR_MAX
);
129 if (!converr
&& iswprint(wc
)) {
132 (void)printf(pr
->fmt
, (int)wc
);
135 assert(strcmp(pr
->fmt
, "%3C") == 0);
141 (void)printf("%*s%C", pad
, "", wc
);
142 pr
->mbleft
= clen
- 1;
145 (void)sprintf(buf
, "%03o", (int)*p
);
147 strpr
: *pr
->cchar
= 's';
148 (void)printf(pr
->fmt
, str
);
153 conv_u(PR
*pr
, u_char
*p
)
155 static char const * list
[] = {
156 "nul", "soh", "stx", "etx", "eot", "enq", "ack", "bel",
157 "bs", "ht", "lf", "vt", "ff", "cr", "so", "si",
158 "dle", "dc1", "dc2", "dc3", "dc4", "nak", "syn", "etb",
159 "can", "em", "sub", "esc", "fs", "gs", "rs", "us",
162 /* od used nl, not lf */
165 if (odmode
&& *p
== 0x0a)
166 (void)printf(pr
->fmt
, "nl");
168 (void)printf(pr
->fmt
, list
[*p
]);
169 } else if (*p
== 0x7f) {
171 (void)printf(pr
->fmt
, "del");
172 } else if (odmode
&& *p
== 0x20) { /* od replaced space with sp */
174 (void)printf(pr
->fmt
, " sp");
175 } else if (isprint(*p
)) {
177 (void)printf(pr
->fmt
, *p
);
180 (void)printf(pr
->fmt
, (int)*p
);