summaryrefslogtreecommitdiffstats
path: root/utf8.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-14 18:34:57 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-14 18:34:57 -0800
commit19cdd145d345c4560ccc9d841025415e9696b64e (patch)
treed93b2eebb6fd855774667b0e8a361f2f130f653c /utf8.h
parentd3aceae6d8c4e37e0d7fb8290a9ae58fc9f7a149 (diff)
downloadtxr-19cdd145d345c4560ccc9d841025415e9696b64e.tar.gz
txr-19cdd145d345c4560ccc9d841025415e9696b64e.tar.bz2
txr-19cdd145d345c4560ccc9d841025415e9696b64e.zip
Provide both char * and unsigned char * interfaces in UTF-8 module.
Fix unsigned and plan char * mixing.
Diffstat (limited to 'utf8.h')
-rw-r--r--utf8.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/utf8.h b/utf8.h
index 542a84fa..159a7e8a 100644
--- a/utf8.h
+++ b/utf8.h
@@ -24,10 +24,14 @@
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-size_t utf8_from(wchar_t *, const unsigned char *);
-size_t utf8_to(unsigned char *, const wchar_t *);
-wchar_t *utf8_dup_from(const unsigned char *);
-unsigned char *utf8_dup_to(const wchar_t *);
+size_t utf8_from_uc(wchar_t *, const unsigned char *);
+size_t utf8_from(wchar_t *, const char *);
+size_t utf8_to_uc(unsigned char *, const wchar_t *);
+size_t utf8_to(char *, const wchar_t *);
+wchar_t *utf8_dup_from_uc(const unsigned char *);
+wchar_t *utf8_dup_from(const char *);
+char *utf8_dup_to(const wchar_t *);
+unsigned char *utf8_dup_to_uc(const wchar_t *);
enum utf8_state { utf8_init, utf8_more1, utf8_more2, utf8_more3 };