BSD 4_4 release
[unix-history] / usr / src / lib / libc / locale / ctype.c
CommitLineData
ab9e3021 1/*
53e6236f
KB
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
ab9e3021 4 *
c0567266
KB
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
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.
20 *
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
31 * SUCH DAMAGE.
ab9e3021
KB
32 */
33
2ce81398 34#if defined(LIBC_SCCS) && !defined(lint)
ad787160 35static char sccsid[] = "@(#)ctype.c 8.1 (Berkeley) 6/4/93";
ab9e3021 36#endif /* LIBC_SCCS and not lint */
b8f253e8 37
598f47dc
KB
38#define _U 0x01
39#define _L 0x02
40#define _N 0x04
41#define _S 0x08
42#define _P 0x10
43#define _C 0x20
44#define _X 0x40
45#define _B 0x80
b91e6e74 46
aef3f94a 47char __ctype[1 + 256] = {
e024f933
BJ
48 0,
49 _C, _C, _C, _C, _C, _C, _C, _C,
c3c69938 50 _C, _C|_S, _C|_S, _C|_S, _C|_S, _C|_S, _C, _C,
e024f933
BJ
51 _C, _C, _C, _C, _C, _C, _C, _C,
52 _C, _C, _C, _C, _C, _C, _C, _C,
8d4052ee 53 _S|_B, _P, _P, _P, _P, _P, _P, _P,
e024f933
BJ
54 _P, _P, _P, _P, _P, _P, _P, _P,
55 _N, _N, _N, _N, _N, _N, _N, _N,
56 _N, _N, _P, _P, _P, _P, _P, _P,
57 _P, _U|_X, _U|_X, _U|_X, _U|_X, _U|_X, _U|_X, _U,
58 _U, _U, _U, _U, _U, _U, _U, _U,
59 _U, _U, _U, _U, _U, _U, _U, _U,
60 _U, _U, _U, _P, _P, _P, _P, _P,
61 _P, _L|_X, _L|_X, _L|_X, _L|_X, _L|_X, _L|_X, _L,
62 _L, _L, _L, _L, _L, _L, _L, _L,
63 _L, _L, _L, _L, _L, _L, _L, _L,
64 _L, _L, _L, _P, _P, _P, _P, _C
65};
598f47dc
KB
66
67char *_ctype_ = __ctype; /* Backward compatibility. */