Open kevin2kevin2 opened 2 years ago
There could be functions for ASCII character (char):
char
ck_assert_char_eq
ck_assert_char_ne
ck_assert_char_lower
islower
ck_assert_char_upper
isupper
ck_assert_char_ddigit
ck_assert_char_xdigit
isxdigit
ck_assert_char_ascii
isascii
#include <ctype.h>
It is simple and could be useful.
There could be functions for ASCII character (
char
):ck_assert_char_eq
ck_assert_char_ne
ck_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.