You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
928 B
43 lines
928 B
16 years ago
|
#include "cache.h"
|
||
|
|
||
14 years ago
|
static int rc;
|
||
16 years ago
|
|
||
14 years ago
|
static void report_error(const char *class, int ch)
|
||
16 years ago
|
{
|
||
14 years ago
|
printf("%s classifies char %d (0x%02x) wrongly\n", class, ch, ch);
|
||
|
rc = 1;
|
||
16 years ago
|
}
|
||
|
|
||
14 years ago
|
static int is_in(const char *s, int ch)
|
||
16 years ago
|
{
|
||
14 years ago
|
/* We can't find NUL using strchr. It's classless anyway. */
|
||
|
if (ch == '\0')
|
||
|
return 0;
|
||
|
return !!strchr(s, ch);
|
||
16 years ago
|
}
|
||
|
|
||
14 years ago
|
#define TEST_CLASS(t,s) { \
|
||
|
int i; \
|
||
|
for (i = 0; i < 256; i++) { \
|
||
|
if (is_in(s, i) != t(i)) \
|
||
|
report_error(#t, i); \
|
||
|
} \
|
||
16 years ago
|
}
|
||
|
|
||
16 years ago
|
#define DIGIT "0123456789"
|
||
|
#define LOWER "abcdefghijklmnopqrstuvwxyz"
|
||
|
#define UPPER "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
||
|
|
||
9 years ago
|
int cmd_main(int argc, const char **argv)
|
||
16 years ago
|
{
|
||
14 years ago
|
TEST_CLASS(isdigit, DIGIT);
|
||
|
TEST_CLASS(isspace, " \n\r\t");
|
||
|
TEST_CLASS(isalpha, LOWER UPPER);
|
||
|
TEST_CLASS(isalnum, LOWER UPPER DIGIT);
|
||
|
TEST_CLASS(is_glob_special, "*?[\\");
|
||
|
TEST_CLASS(is_regex_special, "$()*+.?[\\^{|");
|
||
14 years ago
|
TEST_CLASS(is_pathspec_magic, "!\"#%&',-/:;<=>@_`~");
|
||
16 years ago
|
|
||
|
return rc;
|
||
|
}
|