diff options
Diffstat (limited to 'src/u8c/isdigit.c')
-rw-r--r-- | src/u8c/isdigit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/u8c/isdigit.c b/src/u8c/isdigit.c index 1d5e35f..ebfd7c2 100644 --- a/src/u8c/isdigit.c +++ b/src/u8c/isdigit.c @@ -17,7 +17,7 @@ # include <stddef.h> # include <stdint.h> # include <u8c/isdigit.h> -uint_least8_t u8c_isdigit(uint_least8_t * const _res,uint_least32_t _chr) { +uint_least8_t u8c_isdigit(uint_least8_t * const _res,uint_least32_t const _chr) { assert(_res != NULL); switch(_chr) { default: |