don't send net route to subnet gw's unless on subnet 0;
[unix-history] / usr / src / lib / libc / locale / ctype.c
CommitLineData
2ce81398
DS
1#if defined(LIBC_SCCS) && !defined(lint)
2static char sccsid[] = "@(#)ctype.c 5.4 (Berkeley) %G%";
3#endif LIBC_SCCS and not lint
b8f253e8 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,
c3c69938 10 _C, _C|_S, _C|_S, _C|_S, _C|_S, _C|_S, _C, _C,
e024f933
BJ
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};