Closes #18. Change to char32_t everywhere; builds fine, behaviour as before.

This commit is contained in:
Simon Brooke 2026-04-20 12:10:38 +01:00
parent 812a1be7d9
commit c59825d7fe
33 changed files with 116 additions and 76 deletions

View file

@ -20,6 +20,8 @@
/*
* wide characters
*/
#include <uchar.h>
#include <uchar.h>
#include <wchar.h>
#include <wctype.h>
@ -102,7 +104,7 @@
*/
extern int verbosity;
void debug_print( wchar_t *message, int level, int indent );
void debug_print( char32_t *message, int level, int indent );
void debug_print_object( struct pso_pointer object, int level, int indent );
@ -112,6 +114,6 @@ void debug_print_128bit( __int128_t n, int level );
void debug_println( int level );
void debug_printf( int level, int indent, wchar_t *format, ... );
void debug_printf( int level, int indent, char32_t *format, ... );
#endif