diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2024-02-16 02:37:41 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2024-02-16 02:37:41 +0100 |
commit | 23e63540f2d3ff6da230d1a29aecf33b49d2874d (patch) | |
tree | 46ce92001537d37dd9ef7a164880db1a97aa12b5 /source/kit/print.h | |
parent | 34df687daf49b29e0f2b4d7e0be3bd69df1c40c9 (diff) | |
download | saw-23e63540f2d3ff6da230d1a29aecf33b49d2874d.zip |
Update kit
Diffstat (limited to 'source/kit/print.h')
-rw-r--r-- | source/kit/print.h | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/source/kit/print.h b/source/kit/print.h index 799a011..5a64a20 100644 --- a/source/kit/print.h +++ b/source/kit/print.h @@ -32,18 +32,16 @@ s32 kit_print_esc(kit_str_builder_t *s, kit_str_t value, } #endif -#ifndef KIT_DISABLE_SHORT_NAMES -# define PRINT_ALIGN_RIGHT KIT_PRINT_ALIGN_RIGHT -# define PRINT_UNSIGNED KIT_PRINT_UNSIGNED -# define PRINT_BIN KIT_PRINT_BIN -# define PRINT_OCT KIT_PRINT_OCT -# define PRINT_DEC KIT_PRINT_DEC -# define PRINT_HEX KIT_PRINT_HEX -# define PRINT_PRECISE KIT_PRINT_PRECISE -# define PRINT_UTF8 KIT_PRINT_UTF8 -# define print_int kit_print_int -# define print_float kit_print_float -# define print_esckit_print_esc -#endif +#define PRINT_ALIGN_RIGHT KIT_PRINT_ALIGN_RIGHT +#define PRINT_UNSIGNED KIT_PRINT_UNSIGNED +#define PRINT_BIN KIT_PRINT_BIN +#define PRINT_OCT KIT_PRINT_OCT +#define PRINT_DEC KIT_PRINT_DEC +#define PRINT_HEX KIT_PRINT_HEX +#define PRINT_PRECISE KIT_PRINT_PRECISE +#define PRINT_UTF8 KIT_PRINT_UTF8 +#define print_int kit_print_int +#define print_float kit_print_float +#define print_esckit_print_esc #endif |