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