aboutsummaryrefslogtreecommitdiffstats
path: root/src/utf8.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utf8.h')
-rw-r--r--src/utf8.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/utf8.h b/src/utf8.h
new file mode 100644
index 000000000..1928a8a81
--- /dev/null
+++ b/src/utf8.h
@@ -0,0 +1,14 @@
+#ifndef UTF_8_H
+#define UTF_8_H
+
+unsigned char * asciiToUtf8(unsigned char c);
+
+unsigned char * asciiStrToUtf8Dup(unsigned char * ascii);
+
+unsigned char utf8ToAscii(unsigned char * utf8);
+
+int validateUtf8Char(unsigned char * utf8Char);
+
+int validUtf8String(unsigned char * string);
+
+#endif