]>
git.saurik.com Git - apple/libc.git/blob - gen/vis-fbsd.c
7eb50b7f3df800edc650eb3a4de55d663fed4e76
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
34 #if defined(LIBC_SCCS) && !defined(lint)
35 static char sccsid
[] = "@(#)vis.c 8.1 (Berkeley) 7/19/93";
36 #endif /* LIBC_SCCS and not lint */
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD: src/lib/libc/gen/vis.c,v 1.13 2003/10/30 12:41:50 phk Exp $");
40 #include "xlocale_private.h"
42 #include <sys/types.h>
48 #define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7')
51 * vis - visually encode characters
54 vis(dst
, c
, flag
, nextc
)
59 locale_t loc
= __current_locale();
63 if (flag
& VIS_HTTPSTYLE
) {
64 /* Described in RFC 1808 */
65 if (!(isalnum_l(c
, loc
) /* alpha-numeric */
67 || c
== '$' || c
== '-' || c
== '_' || c
== '.' || c
== '+'
69 || c
== '!' || c
== '*' || c
== '\'' || c
== '('
70 || c
== ')' || c
== ',')) {
72 snprintf_l(dst
, 4, loc
, (c
< 16 ? "0%X" : "%X"), c
);
78 if ((flag
& VIS_GLOB
) &&
79 (c
== '*' || c
== '?' || c
== '[' || c
== '#'))
81 else if (isgraph_l(c
, loc
) ||
82 ((flag
& VIS_SP
) == 0 && c
== ' ') ||
83 ((flag
& VIS_TAB
) == 0 && c
== '\t') ||
84 ((flag
& VIS_NL
) == 0 && c
== '\n') ||
85 ((flag
& VIS_SAFE
) && (c
== '\b' || c
== '\007' || c
== '\r'))) {
87 if (c
== '\\' && (flag
& VIS_NOSLASH
) == 0)
93 if (flag
& VIS_CSTYLE
) {
130 if (isoctal(nextc
)) {
137 if (((c
& 0177) == ' ') || isgraph_l(c
, loc
) || (flag
& VIS_OCTAL
)) {
139 *dst
++ = ((u_char
)c
>> 6 & 07) + '0';
140 *dst
++ = ((u_char
)c
>> 3 & 07) + '0';
141 *dst
++ = ((u_char
)c
& 07) + '0';
144 if ((flag
& VIS_NOSLASH
) == 0)
150 if (iscntrl_l(c
, loc
)) {
166 * strvis, strvisx - visually encode characters from src into dst
168 * Dst must be 4 times the size of src to account for possible
169 * expansion. The length of dst, not including the trailing NUL,
172 * Strvisx encodes exactly len bytes from src into dst.
173 * This is useful for encoding a block of data.
176 strvis(dst
, src
, flag
)
184 for (start
= dst
; (c
= *src
); )
185 dst
= vis(dst
, c
, flag
, *++src
);
187 return (dst
- start
);
191 strvisx(dst
, src
, len
, flag
)
200 for (start
= dst
; len
> 1; len
--) {
202 dst
= vis(dst
, c
, flag
, *++src
);
205 dst
= vis(dst
, *src
, flag
, '\0');
208 return (dst
- start
);