diff options
| author | Kacper <kacper@mail.openlinux.dev> | 2025-12-15 14:42:29 +0100 |
|---|---|---|
| committer | Kacper <kacper@mail.openlinux.dev> | 2025-12-15 14:42:29 +0100 |
| commit | 7cd3b7caee10d62f7be674afb86a136bf30485d6 (patch) | |
| tree | 121a8c79114174b765713387187d930b102f760f /tests/headers/ctype.c | |
| parent | 3b3325f761b09ebbfef04c44eed546cc4fdeb329 (diff) | |
Add mqueue rt api, add header tests
Diffstat (limited to 'tests/headers/ctype.c')
| -rw-r--r-- | tests/headers/ctype.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/headers/ctype.c b/tests/headers/ctype.c new file mode 100644 index 00000000..86ae02a8 --- /dev/null +++ b/tests/headers/ctype.c @@ -0,0 +1,35 @@ +// https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/ctype.h.html + +#include "core.h" + +#include <ctype.h> + +TEST(ctype_h) +{ + TYPE(locale_t); + + FUNCTION(isalnum, int (*f)(int)); + FUNCTION(isalnum_l, int (*f)(int, locale_t)); + FUNCTION(isalpha, int (*f)(int)); + FUNCTION(isalpha_l, int (*f)(int, locale_t)); + FUNCTION(isblank, int (*f)(int)); + FUNCTION(isblank_l, int (*f)(int, locale_t)); + FUNCTION(iscntrl, int (*f)(int)); + FUNCTION(iscntrl_l, int (*f)(int, locale_t)); + FUNCTION(isdigit, int (*f)(int)); + FUNCTION(isdigit_l, int (*f)(int, locale_t)); + FUNCTION(isgraph, int (*f)(int)); + FUNCTION(isgraph_l, int (*f)(int, locale_t)); + FUNCTION(islower, int (*f)(int)); + FUNCTION(islower_l, int (*f)(int, locale_t)); + FUNCTION(isprint, int (*f)(int)); + FUNCTION(isprint_l, int (*f)(int, locale_t)); + FUNCTION(ispunct, int (*f)(int)); + FUNCTION(ispunct_l, int (*f)(int, locale_t)); + FUNCTION(isspace, int (*f)(int)); + FUNCTION(isspace_l, int (*f)(int, locale_t)); + FUNCTION(isupper, int (*f)(int)); + FUNCTION(isupper_l, int (*f)(int, locale_t)); + FUNCTION(isxdigit, int (*f)(int)); + FUNCTION(isxdigit_l, int (*f)(int, locale_t)); +} |
