summaryrefslogtreecommitdiff
path: root/src/utf8.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/utf8.c')
-rw-r--r--src/utf8.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/utf8.c b/src/utf8.c
index 33b62e7..4880a1a 100644
--- a/src/utf8.c
+++ b/src/utf8.c
@@ -33,3 +33,21 @@ utf8_check_locale(void)
#endif
return utf8_locale;
}
+
+int
+isu8char(char c)
+{
+ return utf8_locale && (c) & 0xC0;
+}
+
+int
+isu8start(char c)
+{
+ return utf8_locale && ((c) & 0xC0) == 0xC0;
+}
+
+int
+isu8cont(char c)
+{
+ return utf8_locale && ((c) & 0xC0) == 0x80;
+}