git/t/unit-tests/ctype.c

#include "unit-test.h"

#define TEST_CHAR_CLASS(class, string)

#define DIGIT
#define LOWER
#define UPPER
#define PUNCT
#define ASCII
#define CNTRL

void test_ctype__isspace(void)
{}

void test_ctype__isdigit(void)
{}

void test_ctype__isalpha(void)
{}

void test_ctype__isalnum(void)
{}

void test_ctype__is_glob_special(void)
{}

void test_ctype__is_regex_special(void)
{}

void test_ctype__is_pathspec_magic(void)
{}

void test_ctype__isascii(void)
{}

void test_ctype__islower(void)
{}

void test_ctype__isupper(void)
{}

void test_ctype__iscntrl(void)
{}

void test_ctype__ispunct(void)
{}

void test_ctype__isxdigit(void)
{}

void test_ctype__isprint(void)
{}