summaryrefslogtreecommitdiff
path: root/firmware/include
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include')
-rw-r--r--firmware/include/rbunicode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/include/rbunicode.h b/firmware/include/rbunicode.h
index 0e12890736..66726d10b5 100644
--- a/firmware/include/rbunicode.h
+++ b/firmware/include/rbunicode.h
@@ -19,8 +19,8 @@
19/* Encode a UCS value as UTF-8 and return a pointer after this UTF-8 char. */ 19/* Encode a UCS value as UTF-8 and return a pointer after this UTF-8 char. */
20unsigned char* utf8encode(unsigned long ucs, unsigned char *utf8); 20unsigned char* utf8encode(unsigned long ucs, unsigned char *utf8);
21unsigned char* iso_decode(const unsigned char *latin1, unsigned char *utf8, int cp, int count); 21unsigned char* iso_decode(const unsigned char *latin1, unsigned char *utf8, int cp, int count);
22unsigned char* utf16LEdecode(const unsigned char *utf16, unsigned char *utf8, unsigned int count); 22unsigned char* utf16LEdecode(const unsigned char *utf16, unsigned char *utf8, int count);
23unsigned char* utf16BEdecode(const unsigned char *utf16, unsigned char *utf8, unsigned int count); 23unsigned char* utf16BEdecode(const unsigned char *utf16, unsigned char *utf8, int count);
24unsigned char* utf16decode(const unsigned char *utf16, unsigned char *utf8, unsigned int count); 24unsigned char* utf16decode(const unsigned char *utf16, unsigned char *utf8, unsigned int count);
25unsigned long utf8length(const unsigned char *utf8); 25unsigned long utf8length(const unsigned char *utf8);
26const unsigned char* utf8decode(const unsigned char *utf8, unsigned short *ucs); 26const unsigned char* utf8decode(const unsigned char *utf8, unsigned short *ucs);