diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-01-01 13:01:08 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-01-01 14:40:06 +0000 |
commit | 1f68fe78e84f25c8ddacdc37a293a5de31725bab (patch) | |
tree | 4537db483391b579387c1bcc00c3f1e3b6adc106 /lib/unicode.h | |
parent | Add glm::vec concatenation operator|| (diff) | |
download | ilt-1f68fe78e84f25c8ddacdc37a293a5de31725bab.tar.bz2 ilt-1f68fe78e84f25c8ddacdc37a293a5de31725bab.tar.xz ilt-1f68fe78e84f25c8ddacdc37a293a5de31725bab.zip |
First iteration with font/text support
Diffstat (limited to 'lib/unicode.h')
-rw-r--r-- | lib/unicode.h | 20 |
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 |