summaryrefslogtreecommitdiff
path: root/kit/print.h
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2024-11-17 05:24:04 +0100
committerMitya Selivanov <automainint@guattari.tech>2024-11-17 05:24:04 +0100
commitd5a727a062e4d727491f4e7f047269d60a93a8cf (patch)
tree565aec155ab056f1bef8ddc7dc78d52e65aa76b7 /kit/print.h
parent4ba961dcbf60f7c12f53f46baa261757e15d5931 (diff)
downloadsaw-d5a727a062e4d727491f4e7f047269d60a93a8cf.zip
Remove lots of dependencies
Diffstat (limited to 'kit/print.h')
-rw-r--r--kit/print.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/kit/print.h b/kit/print.h
deleted file mode 100644
index 5a64a20..0000000
--- a/kit/print.h
+++ /dev/null
@@ -1,47 +0,0 @@
-#ifndef KIT_PRINT_H
-#define KIT_PRINT_H
-
-#include "string_builder.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-enum {
- KIT_PRINT_ALIGN_RIGHT = 1,
- KIT_PRINT_UNSIGNED = (1 << 1),
- KIT_PRINT_BIN = (1 << 2),
- KIT_PRINT_OCT = (1 << 3),
- KIT_PRINT_DEC = (1 << 4),
- KIT_PRINT_HEX = (1 << 5),
- KIT_PRINT_PRECISE = (1 << 6),
- KIT_PRINT_UTF8 = (1 << 7),
-};
-
-s32 kit_print_int(kit_str_builder_t *s, i64 value, i64 width, c8 fill,
- u32 flags);
-
-s32 kit_print_float(kit_str_builder_t *s, f64 value, i64 width,
- c8 fill, u32 flags);
-
-s32 kit_print_esc(kit_str_builder_t *s, kit_str_t value,
- c8 escape_char, kit_str_t special_symbols,
- u32 flags);
-
-#ifdef __cplusplus
-}
-#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