File: use_dic.c

package info (click to toggle)
anthy 1%3A0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 23,596 kB
  • sloc: ansic: 24,444; sh: 4,186; lisp: 1,265; makefile: 238
file content (21 lines) | stat: -rw-r--r-- 445 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * 用例辞書を扱う 
 * Copyright (C) 2003 TABATA Yusuke
 */
#include <string.h>
#include <stdlib.h>

#include <anthy/dic.h>
#include <anthy/xstr.h>
#include <anthy/matrix.h>
#include <anthy/word_dic.h>
#include "dic_main.h"
#include "dic_ent.h"

/**/
int anthy_word_dic_check_word_relation(struct word_dic *wdic,
				       int from, int to)
{
  /* 共有辞書 */
  return anthy_matrix_image_peek((int *)wdic->uc_section, from, to);
}