diff options
Diffstat (limited to 'include/u8c/vprint.h')
-rw-r--r-- | include/u8c/vprint.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/include/u8c/vprint.h b/include/u8c/vprint.h index ace9612..41e7e41 100644 --- a/include/u8c/vprint.h +++ b/include/u8c/vprint.h @@ -17,13 +17,8 @@ # if !defined(u8c_sym_vprint) # define u8c_sym_vprint # include <stdarg.h> -# include <stdint.h> +# include <stdbool.h> # include <stdio.h> -# if defined(__cplusplus) -extern "C" { -# endif -extern uint_least8_t u8c_vprint(FILE * fp,uint_least32_t const * const msg,va_list args); -# if defined(__cplusplus) -} -# endif +# include <uchar.h> +extern bool u8c_vprint(FILE * fp,char32_t const * const msg,va_list args); # endif |