summaryrefslogtreecommitdiff
path: root/fw/fe310/eos/unicode.h
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2020-08-09 02:07:13 +0200
committerUros Majstorovic <majstor@majstor.org>2020-08-09 02:07:13 +0200
commit9dd66a7dd0c5ba39f9b602daafea88a00cef75e8 (patch)
tree390e414ff712e8316d71d9a57535ca60224e9e8d /fw/fe310/eos/unicode.h
parent8c76421b174c6c53109df411a6670160a85933a1 (diff)
unicode utf_len added; cell sms services added
Diffstat (limited to 'fw/fe310/eos/unicode.h')
-rw-r--r--fw/fe310/eos/unicode.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/fw/fe310/eos/unicode.h b/fw/fe310/eos/unicode.h
index a3b9696..12fa99c 100644
--- a/fw/fe310/eos/unicode.h
+++ b/fw/fe310/eos/unicode.h
@@ -9,9 +9,11 @@ typedef uint32_t utf32_t;
int utf8_enc(utf32_t ch, utf8_t *str);
int utf8_dec(utf8_t *str, utf32_t *ch);
+int utf8_len(utf8_t *str);
int utf8_seek(utf8_t *str, int off, utf32_t *ch);
int utf8_verify(utf8_t *str, int str_size, int *str_len);
int utf16_enc(utf32_t ch, uint8_t *str);
int utf16_dec(uint8_t *str, utf32_t *ch);
+int utf16_len(uint8_t *str);
int utf16_seek(uint8_t *str, int off, utf32_t *ch);