summaryrefslogtreecommitdiffstats
path: root/src/unicode-extra.h
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-05-04 03:39:44 -0400
committerJesse Luehrs <doy@tozt.net>2016-05-04 04:32:00 -0400
commit2e076d52507be5dd998117ae119683c34b92b457 (patch)
tree3fc31f8a0d2783d5d82feb74561c43ce9eadf1ab /src/unicode-extra.h
parent52f3852bd38c9c9bbf1e4eb1ffbcb8eecee1fd58 (diff)
downloadlibvt100-2e076d52507be5dd998117ae119683c34b92b457.tar.gz
libvt100-2e076d52507be5dd998117ae119683c34b92b457.zip
stop using gunichar here
it makes compilation more complicated, since it makes vt100.h require knowing about the glib headers
Diffstat (limited to 'src/unicode-extra.h')
-rw-r--r--src/unicode-extra.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unicode-extra.h b/src/unicode-extra.h
index eaa3dce..3f749e8 100644
--- a/src/unicode-extra.h
+++ b/src/unicode-extra.h
@@ -1,8 +1,8 @@
#ifndef _VT100_UNICODE_EXTRA_H
#define _VT100_UNICODE_EXTRA_H
-#include <glib.h>
+#include <stdint.h>
-int vt100_is_wide_char(gunichar codepoint);
+int vt100_is_wide_char(uint32_t codepoint);
#endif