summaryrefslogtreecommitdiff
path: root/hangul/hangulctype.c
diff options
context:
space:
mode:
Diffstat (limited to 'hangul/hangulctype.c')
-rw-r--r--hangul/hangulctype.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/hangul/hangulctype.c b/hangul/hangulctype.c
index 53ada66..4ba2415 100644
--- a/hangul/hangulctype.c
+++ b/hangul/hangulctype.c
@@ -882,7 +882,7 @@ hangul_jongseong_to_choseong(ucschar c)
}
void
-hangul_jongseong_dicompose(ucschar c, ucschar* jong, ucschar* cho)
+hangul_jongseong_decompose(ucschar c, ucschar* jong, ucschar* cho)
{
static ucschar table[][2] = {
{ 0, 0x1100 }, /* jong kiyeok = cho kiyeok */
@@ -918,6 +918,12 @@ hangul_jongseong_dicompose(ucschar c, ucschar* jong, ucschar* cho)
*cho = table[c - 0x11a8][1];
}
+void
+hangul_jongseong_dicompose(ucschar c, ucschar* jong, ucschar* cho)
+{
+ hangul_jongseong_decompose(c, jong, cho);
+}
+
static int
hangul_jongseong_get_ncomponent(ucschar jong)
{