We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: