diff options
Diffstat (limited to 'include/u8c/print.h')
-rw-r--r-- | include/u8c/print.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/include/u8c/print.h b/include/u8c/print.h index f77875d..f76c942 100644 --- a/include/u8c/print.h +++ b/include/u8c/print.h @@ -16,13 +16,8 @@ /* Print */ # if !defined(u8c_sym_print) # define u8c_sym_print -# include <stdint.h> +# include <stdbool.h> # include <stdio.h> -# if defined(__cplusplus) -extern "C" { -# endif -extern uint_least8_t u8c_print(FILE * fp,uint_least32_t const * const msg,...); -# if defined(__cplusplus) -} -# endif +# include <uchar.h> +extern bool u8c_print(FILE * fp,char32_t const * const msg,...); # endif |