summaryrefslogtreecommitdiff
path: root/anthy/diclib.h
diff options
context:
space:
mode:
Diffstat (limited to 'anthy/diclib.h')
-rw-r--r--anthy/diclib.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/anthy/diclib.h b/anthy/diclib.h
new file mode 100644
index 0000000..145f37c
--- /dev/null
+++ b/anthy/diclib.h
@@ -0,0 +1,18 @@
+#ifndef __diclib_h_included__
+#define __diclib_h_included__
+
+
+/* 全体の初期化、解放 */
+int anthy_init_diclib(void);
+void anthy_quit_diclib(void);
+
+void* anthy_file_dic_get_section(const char* section_name);
+
+/*
+ utility
+ */
+unsigned int anthy_dic_ntohl(unsigned int a);
+unsigned int anthy_dic_htonl(unsigned int a);
+
+
+#endif