diff options
author | dec05eba <dec05eba@protonmail.com> | 2021-11-28 09:03:23 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2021-11-28 09:03:23 +0100 |
commit | 8792ee2cc5b501f0611e6304f529226a495825db (patch) | |
tree | 38d98dfd7bbcc5d48d13271a9e8923dd7b61dd91 /include | |
parent | 993eea20151d881735c667757e3b64e4f85ac687 (diff) |
Add utf8 index to offset function
Diffstat (limited to 'include')
-rw-r--r-- | include/mgl/system/utf8.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mgl/system/utf8.h b/include/mgl/system/utf8.h index 794884d..f6fe150 100644 --- a/include/mgl/system/utf8.h +++ b/include/mgl/system/utf8.h @@ -16,6 +16,8 @@ bool mgl_utf8_decode(const unsigned char *str, size_t size, uint32_t *decoded_co Returns 0 if start of codepoint is not found. */ size_t mgl_utf8_get_start_of_codepoint(const unsigned char *str, size_t size, size_t offset); +/* Returns |size| if not found */ +size_t mgl_utf8_index_to_offset(const unsigned char *str, size_t size, size_t index); #endif /* MGL_UTF8_H */ |