]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - wtf/unicode/glib/UnicodeGLib.h
JavaScriptCore-903.5.tar.gz
[apple/javascriptcore.git] / wtf / unicode / glib / UnicodeGLib.h
index c03d3ec3b194897e053227c5e0d674ca6e211660..46b00ea89c236af35eee8939ff8095a17f23d84e 100644 (file)
@@ -26,7 +26,7 @@
 #define UnicodeGLib_h
 
 #include "UnicodeMacrosFromICU.h"
-#include <wtf/GOwnPtr.h>
+#include "GOwnPtr.h"
 
 #include <glib.h>
 #include <pango/pango.h>
@@ -152,6 +152,11 @@ inline bool isArabicChar(UChar32 c)
     return c >= 0x0600 && c <= 0x06FF;
 }
 
+inline bool isAlphanumeric(UChar32 c)
+{
+    return g_unichar_isalnum(c);
+}
+
 inline bool isFormatChar(UChar32 c)
 {
     return g_unichar_type(c) == G_UNICODE_FORMAT;