summaryrefslogtreecommitdiff
path: root/src/utf8.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/utf8.c')
-rw-r--r--src/utf8.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/utf8.c b/src/utf8.c
index 7ed6046..bd0c425 100644
--- a/src/utf8.c
+++ b/src/utf8.c
@@ -2,6 +2,11 @@
#include "utf8.h"
+uint32_t utf8_isprint(uint32_t c)
+{
+ return g_unichar_isprint(c);
+}
+
uint32_t utf8_isupper(uint32_t c)
{
return g_unichar_isupper(c);