aboutsummaryrefslogtreecommitdiff
path: root/src/system/Utf8.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/system/Utf8.cpp')
-rw-r--r--src/system/Utf8.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/system/Utf8.cpp b/src/system/Utf8.cpp
index be9b2af..a416477 100644
--- a/src/system/Utf8.cpp
+++ b/src/system/Utf8.cpp
@@ -8,4 +8,8 @@ namespace mgl {
bool utf8_decode(const unsigned char *str, size_t size, uint32_t *decoded_codepoint, size_t *codepoint_length) {
return mgl_utf8_decode(str, size, decoded_codepoint, codepoint_length);
}
+
+ size_t utf8_get_start_of_codepoint(const unsigned char *str, size_t size, size_t offset) {
+ return mgl_utf8_get_start_of_codepoint(str, size, offset);
+ }
} \ No newline at end of file