1 /* ctype-checked.c -- checks char isn't used as the value for each of
2  *     the ctype functions
3  *
4  * This code is Copyright (c) 2016, by the authors of nmh.
5  * See the COPYRIGHT file in the root directory of the nmh
6  * distribution for complete copyright information.
7  */
8 
9 #include <config.h>
10 
11 #ifndef NDEBUG
12 
13 #include <stdio.h>
14 #if EOF != -1
15 #error "Please report this to nmh's authors."
16 #endif
17 
18 #include <sbr/ctype-checked.h>
19 
20 /* ctype_identity returns its index less one allowing [EOF, 255] to be
21  * used as indexes to ctype_identity + 1. */
22 int ctype_identity[257] = {
23     -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
24     18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
25     35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51,
26     52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68,
27     69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85,
28     86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
29     102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114,
30     115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127,
31     128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140,
32     141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153,
33     154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166,
34     167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179,
35     180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192,
36     193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205,
37     206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218,
38     219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231,
39     232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244,
40     245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255
41 };
42 
43 #else
44 
45 /* Need to put a symbol in the .c file with NDEBUG so the compilation
46  * unit isn't empty. */
47 void ctype_checked(void);
48 
49 #endif
50