TIOCGPGRP copies an int out of the kernel
[unix-history] / usr / src / lib / libc / locale / ctype.c
CommitLineData
ab9e3021
KB
1/*
2 * Copyright (c) 1989 The Regents of the University of California.
3 * All rights reserved.
4 *
269a7923 5 * %sccs.include.redist.c%
ab9e3021
KB
6 */
7
2ce81398 8#if defined(LIBC_SCCS) && !defined(lint)
269a7923 9static char sccsid[] = "@(#)ctype.c 5.6 (Berkeley) %G%";
ab9e3021 10#endif /* LIBC_SCCS and not lint */
b8f253e8 11
ab9e3021 12#include <ctype.h>
e024f933 13
06af4cca 14char _ctype_[1 + 256] = {
e024f933
BJ
15 0,
16 _C, _C, _C, _C, _C, _C, _C, _C,
c3c69938 17 _C, _C|_S, _C|_S, _C|_S, _C|_S, _C|_S, _C, _C,
e024f933
BJ
18 _C, _C, _C, _C, _C, _C, _C, _C,
19 _C, _C, _C, _C, _C, _C, _C, _C,
8d4052ee 20 _S|_B, _P, _P, _P, _P, _P, _P, _P,
e024f933
BJ
21 _P, _P, _P, _P, _P, _P, _P, _P,
22 _N, _N, _N, _N, _N, _N, _N, _N,
23 _N, _N, _P, _P, _P, _P, _P, _P,
24 _P, _U|_X, _U|_X, _U|_X, _U|_X, _U|_X, _U|_X, _U,
25 _U, _U, _U, _U, _U, _U, _U, _U,
26 _U, _U, _U, _U, _U, _U, _U, _U,
27 _U, _U, _U, _P, _P, _P, _P, _P,
28 _P, _L|_X, _L|_X, _L|_X, _L|_X, _L|_X, _L|_X, _L,
29 _L, _L, _L, _L, _L, _L, _L, _L,
30 _L, _L, _L, _L, _L, _L, _L, _L,
31 _L, _L, _L, _P, _P, _P, _P, _C
32};