(linenum→info "unix/slp.c:2238")

anthy/9100e/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: }
Syntax (Markdown)