summaryrefslogtreecommitdiff
path: root/hangul/hangul.h
diff options
context:
space:
mode:
authorChoe Hwanjin <choe.hwanjin@gmail.com>2006-11-27 23:44:57 +0900
committerChoe Hwanjin <choe.hwanjin@gmail.com>2006-11-27 23:44:57 +0900
commitb55ceb9aa07391eae39404ac17559306f1ee68df (patch)
tree0cba783445c35d5b563ebc0ef1b5a8900cbd6c55 /hangul/hangul.h
parenta444ce20b20407d7720572c6558ae742423a5a28 (diff)
downloadlibhangul-b55ceb9aa07391eae39404ac17559306f1ee68df.tar.gz
* hangulconfig.h 인스톨 룰 추가
* hangul.h에서 hangulconfig.h를 include * ucschar를 int type으로 변경 * inttypes.h를 hangulinputcontext.c에서 직접 include하게 함 git-svn-id: http://kldp.net/svn/hangul/libhangul/trunk@100 8f00fcd2-89fc-0310-932e-b01be5b65e01
Diffstat (limited to 'hangul/hangul.h')
-rw-r--r--hangul/hangul.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/hangul/hangul.h b/hangul/hangul.h
index 3b22c96..b38a77d 100644
--- a/hangul/hangul.h
+++ b/hangul/hangul.h
@@ -19,8 +19,7 @@
#ifndef _HANGUL_H_
#define _HANGUL_H_
-#include <stdbool.h>
-#include <inttypes.h>
+#include <hangulconfig.h>
#ifdef __cplusplus
extern "C" {
@@ -32,7 +31,7 @@ enum {
HANGUL_JUNGSEONG_FILLER = 0x1160 /* hangul jungseong filler */
};
-typedef uint32_t ucschar;
+typedef unsigned int ucschar;
bool hangul_is_choseong(ucschar c);
bool hangul_is_jungseong(ucschar c);