implement multiple address return from gethostby* routines
[unix-history] / usr / src / lib / libc / locale / ctype.c
CommitLineData
b8f253e8 1#ifndef lint
8d4052ee 2static char sccsid[] = "@(#)ctype.c 5.2 (Berkeley) %G%";
b8f253e8
KM
3#endif not lint
4
e024f933
BJ
5#include <ctype.h>
6
06af4cca 7char _ctype_[1 + 256] = {
e024f933
BJ
8 0,
9 _C, _C, _C, _C, _C, _C, _C, _C,
10 _C, _S, _S, _S, _S, _S, _C, _C,
11 _C, _C, _C, _C, _C, _C, _C, _C,
12 _C, _C, _C, _C, _C, _C, _C, _C,
8d4052ee 13 _S|_B, _P, _P, _P, _P, _P, _P, _P,
e024f933
BJ
14 _P, _P, _P, _P, _P, _P, _P, _P,
15 _N, _N, _N, _N, _N, _N, _N, _N,
16 _N, _N, _P, _P, _P, _P, _P, _P,
17 _P, _U|_X, _U|_X, _U|_X, _U|_X, _U|_X, _U|_X, _U,
18 _U, _U, _U, _U, _U, _U, _U, _U,
19 _U, _U, _U, _U, _U, _U, _U, _U,
20 _U, _U, _U, _P, _P, _P, _P, _P,
21 _P, _L|_X, _L|_X, _L|_X, _L|_X, _L|_X, _L|_X, _L,
22 _L, _L, _L, _L, _L, _L, _L, _L,
23 _L, _L, _L, _L, _L, _L, _L, _L,
24 _L, _L, _L, _P, _P, _P, _P, _C
25};