summaryrefslogtreecommitdiffstats
path: root/ucs.h
diff options
context:
space:
mode:
Diffstat (limited to 'ucs.h')
-rw-r--r--ucs.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/ucs.h b/ucs.h
new file mode 100644
index 0000000..f824bc0
--- /dev/null
+++ b/ucs.h
@@ -0,0 +1,14 @@
+/**
+ * ucs.c
+ */
+
+#ifndef __UCS_H__
+#define __UCS_H__
+
+#include "types.h"
+
+u32 beucs2(u16 *ucs2);
+u32 ucs2len(u16 *ucs2);
+void print_ucs2_as_utf8(u16 *ucs2);
+
+#endif