Fix memory leak issues
[platform/core/uifw/anthy.git] / src-worddic / use_dic.c
1 /*
2  * ÍÑÎã¼­½ñ¤ò°·¤¦ 
3  * Copyright (C) 2003 TABATA Yusuke
4  */
5 #include <string.h>
6 #include <stdlib.h>
7
8 #include <anthy/dic.h>
9 #include <anthy/xstr.h>
10 #include <anthy/matrix.h>
11 #include <anthy/word_dic.h>
12 #include "dic_main.h"
13 #include "dic_ent.h"
14
15 /**/
16 int anthy_word_dic_check_word_relation(struct word_dic *wdic,
17                                        int from, int to)
18 {
19   /* ¶¦Í­¼­½ñ */
20   return anthy_matrix_image_peek((int *)wdic->uc_section, from, to);
21 }