
1: #ifndef __diclib_h_included__ 2: #define __diclib_h_included__ 3: 4: 5: /* 全体の初期化、解放 */ 6: int anthy_init_diclib(void); 7: void anthy_quit_diclib(void); 8: 9: void* anthy_file_dic_get_section(const char* section_name); 10: 11: /* 12: utility 13: */ 14: unsigned int anthy_dic_ntohl(unsigned int a); 15: unsigned int anthy_dic_htonl(unsigned int a); 16: 17: 18: #endif