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
32 * @(#)util.c 8.3 (Berkeley) 4/2/94
33 * $FreeBSD: src/bin/ls/util.c,v 1.35 2004/05/03 11:48:55 tjr Exp $
34 * $DragonFly: src/bin/ls/util.c,v 1.8 2008/02/14 09:33:24 matthias Exp $
37 #include <sys/types.h>
54 prn_normal(const char *s
)
61 memset(&mbs
, 0, sizeof(mbs
));
63 while ((clen
= mbrtowc(&wc
, s
, MB_LEN_MAX
, &mbs
)) != 0) {
64 if (clen
== (size_t)-2) {
68 if (clen
== (size_t)-1) {
69 memset(&mbs
, 0, sizeof(mbs
));
70 putchar((unsigned char)*s
);
75 for (i
= 0; i
< (int)clen
; i
++)
76 putchar((unsigned char)s
[i
]);
85 prn_printable(const char *s
)
92 memset(&mbs
, 0, sizeof(mbs
));
94 while ((clen
= mbrtowc(&wc
, s
, MB_LEN_MAX
, &mbs
)) != 0) {
95 if (clen
== (size_t)-1) {
99 memset(&mbs
, 0, sizeof(mbs
));
102 if (clen
== (size_t)-2) {
113 for (i
= 0; i
< (int)clen
; i
++)
114 putchar((unsigned char)s
[i
]);
122 * The fts system makes it difficult to replace fts_name with a different-
123 * sized string, so we just calculate the real length here and do the
124 * conversion in prn_octal()
126 * XXX when using f_octal_escape (-b) rather than f_octal (-B), the
127 * length computed by len_octal may be too big. I just can't be buggered
128 * to fix this as an efficient fix would involve a lookup table. Same goes
129 * for the rather inelegant code in prn_octal.
135 len_octal(const char *s
, int len
)
141 memset(&mbs
, 0, sizeof(mbs
));
143 while (len
!= 0 && (clen
= mbrtowc(&wc
, s
, len
, &mbs
)) != 0) {
144 if (clen
== (size_t)-1) {
148 memset(&mbs
, 0, sizeof(mbs
));
151 if (clen
== (size_t)-2) {
165 prn_octal(const char *s
)
167 static const char esc
[] = "\\\\\"\"\aa\bb\ff\nn\rr\tt\vv";
173 int goodchar
, i
, len
, prtlen
;
175 memset(&mbs
, 0, sizeof(mbs
));
177 while ((clen
= mbrtowc(&wc
, s
, MB_LEN_MAX
, &mbs
)) != 0) {
178 goodchar
= clen
!= (size_t)-1 && clen
!= (size_t)-2;
179 if (goodchar
&& iswprint(wc
) && wc
!= L
'\"' && wc
!= L
'\\') {
180 for (i
= 0; i
< (int)clen
; i
++)
181 putchar((unsigned char)s
[i
]);
183 } else if (goodchar
&& f_octal_escape
&& wc
>= 0 &&
184 wc
<= (wchar_t)UCHAR_MAX
&&
185 (p
= strchr(esc
, (char)wc
)) != NULL
) {
192 else if (clen
== (size_t)-1)
196 for (i
= 0; i
< prtlen
; i
++) {
197 ch
= (unsigned char)s
[i
];
199 putchar('0' + (ch
>> 6));
200 putchar('0' + ((ch
>> 3) & 7));
201 putchar('0' + (ch
& 7));
205 if (clen
== (size_t)-2)
207 if (clen
== (size_t)-1) {
208 memset(&mbs
, 0, sizeof(mbs
));
221 "usage: ls [-ABCFGHLPRSTWabcdfghiklmnoqrstuwxy1]"
223 "usage: ls [-ABCFHLPRSTWabcdfghiklmnoqrstuwxy1]"