summaryrefslogtreecommitdiff
path: root/source/kit/utf8.h
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2024-07-14 21:12:37 +0200
committerMitya Selivanov <automainint@guattari.tech>2024-07-14 21:12:37 +0200
commit30740ca4131d1f574718262451b4410207dc8d4e (patch)
treefc88b16a216079397ad85b9c6b1a1c1c5712a814 /source/kit/utf8.h
parent5e3c99bb1cf1d03ea006300121265571f5008fd2 (diff)
downloadsaw-30740ca4131d1f574718262451b4410207dc8d4e.zip
Reworking the build system
Diffstat (limited to 'source/kit/utf8.h')
-rw-r--r--source/kit/utf8.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/source/kit/utf8.h b/source/kit/utf8.h
deleted file mode 100644
index 3dc6822..0000000
--- a/source/kit/utf8.h
+++ /dev/null
@@ -1,44 +0,0 @@
-#ifndef KIT_UTF8_H
-#define KIT_UTF8_H
-
-#include "string_builder.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#if defined(__GNUC__) || defined(__clang__)
-# pragma GCC diagnostic push
-# pragma GCC diagnostic ignored "-Wunused-function"
-# pragma GCC diagnostic ignored "-Wunknown-pragmas"
-# pragma GCC push_options
-# pragma GCC optimize("O3")
-#endif
-
-static s32 kit_utf8_count(kit_str_t s, i64 *count) {
- return KIT_ERROR_NOT_IMPLEMENTED;
-}
-
-static s32 kit_utf8_offset(kit_str_t s, i64 count, i64 *offset) {
- return KIT_ERROR_NOT_IMPLEMENTED;
-}
-
-static s32 kit_utf8_decode(kit_str_t s, i64 offset, i64 *size,
- c32 *value) {
- return KIT_ERROR_NOT_IMPLEMENTED;
-}
-
-static s32 kit_utf8_encode(kit_str_builder_t *s, c32 value) {
- return KIT_ERROR_NOT_IMPLEMENTED;
-}
-
-#if defined(__GNUC__) || defined(__clang__)
-# pragma GCC pop_options
-# pragma GCC diagnostic pop
-#endif
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif