There could be functions for ASCII character (char):
ck_assert_char_eq
ck_assert_char_ne
ck_assert_char_lower (by using islower)
ck_assert_char_upper (by using isupper)
ck_assert_char_ddigit (decimal)
ck_assert_char_xdigit (by using isxdigit)
ck_assert_char_ascii (by using isascii)
- etc. (see
#include <ctype.h>)
It is simple and could be useful.
There could be functions for ASCII character (
char):ck_assert_char_eqck_assert_char_neck_assert_char_lower(by usingislower)ck_assert_char_upper(by usingisupper)ck_assert_char_ddigit(decimal)ck_assert_char_xdigit(by usingisxdigit)ck_assert_char_ascii(by usingisascii)#include <ctype.h>)It is simple and could be useful.