Add ctype test
[git/gitweb.git] / test-ctype.c
blob723eff4e96ca4389f2ffba70fbda3e44b2a96ebf
1 #include "cache.h"
4 static int test_isdigit(int c)
6 return isdigit(c);
9 static int test_isspace(int c)
11 return isspace(c);
14 static int test_isalpha(int c)
16 return isalpha(c);
19 static int test_isalnum(int c)
21 return isalnum(c);
24 #define DIGIT "0123456789"
25 #define LOWER "abcdefghijklmnopqrstuvwxyz"
26 #define UPPER "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
28 static const struct ctype_class {
29 const char *name;
30 int (*test_fn)(int);
31 const char *members;
32 } classes[] = {
33 { "isdigit", test_isdigit, DIGIT },
34 { "isspace", test_isspace, " \n\r\t" },
35 { "isalpha", test_isalpha, LOWER UPPER },
36 { "isalnum", test_isalnum, LOWER UPPER DIGIT },
37 { NULL }
40 static int test_class(const struct ctype_class *test)
42 int i, rc = 0;
44 for (i = 0; i < 256; i++) {
45 int expected = i ? !!strchr(test->members, i) : 0;
46 int actual = test->test_fn(i);
48 if (actual != expected) {
49 rc = 1;
50 printf("%s classifies char %d (0x%02x) wrongly\n",
51 test->name, i, i);
54 return rc;
57 int main(int argc, char **argv)
59 const struct ctype_class *test;
60 int rc = 0;
62 for (test = classes; test->name; test++)
63 rc |= test_class(test);
65 return rc;