summaryrefslogtreecommitdiff
path: root/hangul/hangulctype.c
diff options
context:
space:
mode:
Diffstat (limited to 'hangul/hangulctype.c')
-rw-r--r--hangul/hangulctype.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/hangul/hangulctype.c b/hangul/hangulctype.c
index 31dd206..e29d79b 100644
--- a/hangul/hangulctype.c
+++ b/hangul/hangulctype.c
@@ -146,6 +146,18 @@ hangul_is_jongseong_conjoinable(ucschar c)
/**
* @ingroup hangulctype
+ * @brief 자모가 조합 가능한지 확인
+ */
+bool
+hangul_is_jamo_conjoinable(ucschar c)
+{
+ return hangul_is_choseong_conjoinable(c) ||
+ hangul_is_jungseong_conjoinable(c) ||
+ hangul_is_jongseong_conjoinable(c);
+}
+
+/**
+ * @ingroup hangulctype
* @brief 한글 음절 인지 확
* @param c UCS4 코드 값
* @return @a c가 한글 음절 코드이면 true, 그 외에는 false