summaryrefslogtreecommitdiff
path: root/lib/unicode.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/unicode.h')
-rw-r--r--lib/unicode.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/unicode.h b/lib/unicode.h
new file mode 100644
index 0000000..8bd841b
--- /dev/null
+++ b/lib/unicode.h
@@ -0,0 +1,20 @@
+#ifndef UNICODE_H
+#define UNICODE_H
+
+// Wrappers of some glib functions (why are we using glib then?) which we want, but glib.h is a bit C like
+
+#ifdef __cplusplus
+# include <cstdint>
+extern "C" {
+#else
+# include <stdint.h>
+#endif
+
+const char * next_char(const char *);
+uint32_t get_codepoint(const char *);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif