comparison Wnn/manual/3.libwnn/js_lib/hindo_creat @ 0:bbc77ca4def5

initial import
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Thu, 13 Dec 2007 04:30:14 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:bbc77ca4def5
1
2
3
4 JS_HINDO_CREAT( ) UNIX Programmer's Manual JS_HINDO_CREAT( )
5
6
7
8 名称
9
10 js_hindo_file_create() 辞書ファイルの頻度ファイルを作る。
11
12 形式
13
14 #include "jslib.h"
15
16 int
17 js_hindo_file_create(env,fid,fn,comment,hpasswd)
18 struct wnn_env *env; /* 環境 */
19 int fid; /* 辞書ファイルのID */
20 char *fn; /* ファイル名 */
21 w_char *comment; /* コメント */
22 char *hpasswd; /* パスワード */
23
24 機能
25
26 辞書ファイル ID fid の頻度ファイルを作る。頻度ファイル名 fn
27 の最大文字数は、 100 文字である。頻度ファイルのコメント com-
28 ment の最大文字数は、 512 文字である。頻度ファイルのパスワー
29 ド hpasswd の最大文字数は、 16 文字である。
30
31 リターンバリュー
32
33 正常終了時には、0 を返す。
34 異常終了時には、-1 を返す。
35
36
37
38
39 Printed 1/22/92 11 October 1991 1
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132