summaryrefslogtreecommitdiff
path: root/core/utf8.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/utf8.h')
-rw-r--r--core/utf8.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/utf8.h b/core/utf8.h
new file mode 100644
index 0000000..b386a3c
--- /dev/null
+++ b/core/utf8.h
@@ -0,0 +1,8 @@
+#ifndef UTF8_H
+#define UTF8_H
+
+std::string toUTF8(std::wstring str);
+std::string toUTF8(std::string str);
+std::wstring toUTF16(std::string str);
+
+#endif