]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/sys/utfconv.h
xnu-3247.1.106.tar.gz
[apple/xnu.git] / bsd / sys / utfconv.h
index bff9d066733b6939ac2de4d45b26b49ca669884c..c872fc0b60f28a4b73f66e58b8bf92050801e160 100644 (file)
 
 __BEGIN_DECLS
 
+
+/*
+ * unicode_combinable - Test for a combining unicode character.
+ *
+ * This function is similar to __CFUniCharIsNonBaseCharacter except
+ * that it also includes Hangul Jamo characters.
+ */
+
+int unicode_combinable(u_int16_t character);
+
+/*
+ * Test for a precomposed character.
+ * 
+ * Similar to __CFUniCharIsDecomposableCharacter.
+ */
+
+int unicode_decomposeable(u_int16_t character);
+
+
 /*
  * utf8_encodelen - Calculate the UTF-8 encoding length
  *