diff options
Diffstat (limited to 'src/u8c/isalnum.c')
-rw-r--r-- | src/u8c/isalnum.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/u8c/isalnum.c b/src/u8c/isalnum.c index f8b5686..13834c3 100644 --- a/src/u8c/isalnum.c +++ b/src/u8c/isalnum.c @@ -17,9 +17,7 @@ # include <stdbool.h> # include <stddef.h> # include <stdint.h> -# include <u8c/isalnum.h> -# include <u8c/isalpha.h> -# include <u8c/isdigit.h> +# include <u8c/is.h> bool u8c_isalnum(uint_least8_t * const _res,char32_t const _chr) { assert(_res != NULL); uint_least8_t res = UINT8_C(0x0); |