]>
git.saurik.com Git - apple/file_cmds.git/blob - ls/util.c
de79f13c6802c0ca94825edf3f4546c1a79a775a
2 * Copyright (c) 1989, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 4. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 static char sccsid
[] = "@(#)util.c 8.3 (Berkeley) 4/2/94";
38 #include <sys/cdefs.h>
39 __FBSDID("$FreeBSD: src/bin/ls/util.c,v 1.38 2005/06/03 11:05:58 dd Exp $");
41 #include <sys/types.h>
58 prn_normal(const char *s
)
65 memset(&mbs
, 0, sizeof(mbs
));
67 while ((clen
= mbrtowc(&wc
, s
, MB_LEN_MAX
, &mbs
)) != 0) {
68 if (clen
== (size_t)-2) {
72 if (clen
== (size_t)-1) {
73 memset(&mbs
, 0, sizeof(mbs
));
74 putchar((unsigned char)*s
);
79 for (i
= 0; i
< (int)clen
; i
++)
80 putchar((unsigned char)s
[i
]);
89 prn_printable(const char *s
)
96 memset(&mbs
, 0, sizeof(mbs
));
98 while ((clen
= mbrtowc(&wc
, s
, MB_LEN_MAX
, &mbs
)) != 0) {
99 if (clen
== (size_t)-1) {
103 memset(&mbs
, 0, sizeof(mbs
));
106 if (clen
== (size_t)-2) {
117 for (i
= 0; i
< (int)clen
; i
++)
118 putchar((unsigned char)s
[i
]);
126 * The fts system makes it difficult to replace fts_name with a different-
127 * sized string, so we just calculate the real length here and do the
128 * conversion in prn_octal()
130 * XXX when using f_octal_escape (-b) rather than f_octal (-B), the
131 * length computed by len_octal may be too big. I just can't be buggered
132 * to fix this as an efficient fix would involve a lookup table. Same goes
133 * for the rather inelegant code in prn_octal.
139 len_octal(const char *s
, int len
)
145 memset(&mbs
, 0, sizeof(mbs
));
147 while (len
!= 0 && (clen
= mbrtowc(&wc
, s
, len
, &mbs
)) != 0) {
148 if (clen
== (size_t)-1) {
152 memset(&mbs
, 0, sizeof(mbs
));
155 if (clen
== (size_t)-2) {
169 prn_octal(const char *s
)
171 static const char esc
[] = "\\\\\"\"\aa\bb\ff\nn\rr\tt\vv";
177 int goodchar
, i
, len
, prtlen
;
179 memset(&mbs
, 0, sizeof(mbs
));
181 while ((clen
= mbrtowc(&wc
, s
, MB_LEN_MAX
, &mbs
)) != 0) {
182 goodchar
= clen
!= (size_t)-1 && clen
!= (size_t)-2;
183 if (goodchar
&& iswprint(wc
) && wc
!= L
'\"' && wc
!= L
'\\') {
184 for (i
= 0; i
< (int)clen
; i
++)
185 putchar((unsigned char)s
[i
]);
187 } else if (goodchar
&& f_octal_escape
&& wc
>= 0 &&
188 wc
<= (wchar_t)UCHAR_MAX
&&
189 (p
= strchr(esc
, (char)wc
)) != NULL
) {
196 else if (clen
== (size_t)-1)
200 for (i
= 0; i
< prtlen
; i
++) {
201 ch
= (unsigned char)s
[i
];
203 putchar('0' + (ch
>> 6));
204 putchar('0' + ((ch
>> 3) & 7));
205 putchar('0' + (ch
& 7));
209 if (clen
== (size_t)-2)
211 if (clen
== (size_t)-1) {
212 memset(&mbs
, 0, sizeof(mbs
));
223 (void)fprintf(stderr
,
225 "usage: ls [-ABCFGHLOPRSTUWabcdefghiklmnopqrstuwx1]"
227 "usage: ls [-ABCFHLOPRSTUWabcdefghiklmnopqrstuwx1]"