0
|
1 /*
|
|
2 * $Id: rk_read.c,v 1.2 2001/06/14 18:16:10 ura Exp $
|
|
3 */
|
|
4
|
|
5 /*
|
|
6 * FreeWnn is a network-extensible Kana-to-Kanji conversion system.
|
|
7 * This file is part of FreeWnn.
|
|
8 *
|
|
9 * Copyright Kyoto University Research Institute for Mathematical Sciences
|
|
10 * 1987, 1988, 1989, 1990, 1991, 1992
|
|
11 * Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999
|
|
12 * Copyright ASTEC, Inc. 1987, 1988, 1989, 1990, 1991, 1992
|
|
13 *
|
|
14 * Author: OMRON SOFTWARE Co., Ltd. <freewnn@rd.kyoto.omronsoft.co.jp>
|
|
15 *
|
|
16 * This program is free software; you can redistribute it and/or modify
|
|
17 * it under the terms of the GNU General Public License as published by
|
|
18 * the Free Software Foundation; either version 2, or (at your option)
|
|
19 * any later version.
|
|
20 *
|
|
21 * This program is distributed in the hope that it will be useful,
|
|
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
24 * GNU General Public License for more details.
|
|
25 *
|
|
26 * You should have received a copy of the GNU General Public License
|
|
27 * along with GNU Emacs; see the file COPYING. If not, write to the
|
|
28 * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
29 *
|
|
30 * Commentary:
|
|
31 *
|
|
32 * Change log:
|
|
33 *
|
|
34 * Last modified date: 8,Feb.1999
|
|
35 *
|
|
36 * Code:
|
|
37 *
|
|
38 */
|
|
39 /***********************************************************************
|
|
40 rk_read.c
|
|
41 87.12. 9 訂 補
|
|
42
|
|
43 rk_main.c の部品。変換対応表の読み込みを担当。
|
|
44 ***********************************************************************/
|
|
45 /* Version 3.1 88/06/15 H.HASHIMOTO
|
|
46 */
|
|
47 #ifndef OMRON_LIB
|
|
48 #include "rk_header.h"
|
|
49 #include "rk_extvars.h"
|
|
50 #ifdef MULTI
|
|
51 #include "rk_multi.h"
|
|
52 #endif /*MULTI*/
|
|
53 #include <sys/types.h>
|
|
54 #include <sys/stat.h>
|
|
55 #endif
|
|
56 #include "rext.h"
|
|
57 /* 88/06/13 V3.1 */
|
|
58 #ifndef MULTI
|
|
59 static letter *ltrbufbgn; /* 使用中のletterのバッファの先頭を指す */
|
|
60 #endif /*!MULTI */
|
|
61 static letter *ltrbufptr;
|
|
62 static letter *term;
|
|
63 static letter *dummy;
|
|
64
|
|
65
|
|
66 static dat *datptr; /* V3.1 */
|
|
67 static letter *memptr; /* V3.1 */
|
|
68
|
|
69 static letter *hen_iki; /* V3.1 */
|
|
70
|
|
71 /* エラーメッセージのためのもの */
|
|
72 #ifndef MULTI
|
|
73 static char *tcurdir; /* 対応表のサーチパス */
|
|
74 static char *tcurfnm; /* 対応表のファイル名 */
|
|
75 static char *tcurread; /* 対応表の現在行bufへのポインタ */
|
|
76 #endif /*!MULTI */
|
|
77
|
|
78 /* 88/06/02 V3.1 */
|
|
79 #define bit3(x, y, z) ((x) | ((y) << 1) | ((z) << 2))
|
|
80
|
|
81 /* 組み込み関数の性質を保持するstruct */
|
|
82 struct funstr
|
|
83 {
|
|
84 char *fnname; /* 関数名 */
|
|
85 char appear; /* 入力コード部・出力コード部・バッファ残り部
|
|
86 に書けるかどうかのフラグ3ビット */
|
|
87 char argnum; /* 引数の個数 */
|
|
88 char fntype; /* 結果のタイプ */
|
|
89 };
|
|
90
|
|
91 /* 関数の追加にはここと mchevl(), evlis() をいじる */
|
|
92 static struct funstr func[] = {
|
|
93 /* 引数の数(-1…この値未使用)
|
|
94 名 出現 | タイプ…0:文字関数 1:文字列関数
|
|
95 ↓ ↓ ↓ ↓ 2:特殊関数 3:機能 4:宣言 */
|
|
96 "defvar", bit3 (1, 0, 0), -1, 4, /* 0 */
|
|
97 "include", bit3 (1, 0, 0), -1, 4,
|
|
98 "toupper", bit3 (1, 1, 1), 1, 0,
|
|
99 "tolower", bit3 (1, 1, 1), 1, 0,
|
|
100 /* "error", bit3(0,1,0), 0, 3,*/
|
|
101 "off", bit3 (0, 1, 0), -1, 2,
|
|
102 "on", bit3 (0, 1, 0), -1, 2, /* 5 */
|
|
103 "switch", bit3 (0, 1, 0), -1, 2,
|
|
104 "toupdown", bit3 (1, 1, 1), 1, 0,
|
|
105 "tozenalpha", bit3 (1, 1, 1), 1, 0,
|
|
106 "tohira", bit3 (1, 1, 1), 1, 0,
|
|
107 "tokata", bit3 (1, 1, 1), 1, 0, /* 10 */
|
|
108 "tohankata", bit3 (1, 1, 1), 1, 1,
|
|
109 "tozenhira", bit3 (1, 1, 1), 1, 0,
|
|
110 "tozenkata", bit3 (1, 1, 1), 1, 0,
|
|
111 "+", bit3 (1, 1, 1), 2, 0,
|
|
112 "-", bit3 (1, 1, 1), 2, 0, /* 15 */
|
|
113 "*", bit3 (1, 1, 1), 2, 0,
|
|
114 "/", bit3 (1, 1, 1), 2, 0,
|
|
115 "%", bit3 (1, 1, 1), 2, 0,
|
|
116 "last=", bit3 (1, 0, 0), 1, 2, /* 直前のマッチコード==引数か? */
|
|
117 "if", bit3 (1, 0, 0), -1, 2, /* 20 */
|
|
118 "unless", bit3 (1, 0, 0), -1, 2,
|
|
119 "restart", bit3 (0, 1, 0), 0, 3,
|
|
120 "delchr", bit3 (1, 1, 1), 0, 0, /* delchrを返す。隠しコマンド */
|
|
121 "alloff", bit3 (0, 1, 0), 0, 2, /* 全モードをいっぺんにOFF */
|
|
122 "allon", bit3 (0, 1, 0), 0, 2, /* 25 */
|
|
123 "bitand", bit3 (1, 1, 1), 2, 0,
|
|
124 "bitor", bit3 (1, 1, 1), 2, 0,
|
|
125 "bitnot", bit3 (1, 1, 1), 1, 0,
|
|
126 "!", bit3 (0, 1, 0), 0, 2, /* 裏バッファの明示的クリア */
|
|
127 "atEOF", bit3 (1, 0, 0), 0, 2, /* 30 */
|
|
128 "todigit", bit3 (1, 1, 1), 2, 1,
|
|
129 "dakuadd", bit3 (1, 1, 1), 1, 1, /* 濁点の付加 */
|
|
130 "handakuadd", bit3 (1, 1, 1), 1, 1, /* 半濁点の付加 */
|
|
131 "value", bit3 (1, 1, 1), 1, 0,
|
|
132 "error", bit3 (0, 1, 0), 0, 3, /* 35 */
|
|
133 "defconst", bit3 (1, 0, 0), -1, 4,
|
|
134 "setmode", bit3 (0, 1, 0), -1, 2,
|
|
135 "mode+", bit3 (0, 1, 0), -1, 2,
|
|
136 "mode-", bit3 (0, 1, 0), -1, 2,
|
|
137 "mode=", bit3 (1, 0, 0), -1, 2, /* 40 */
|
|
138 "mode!=", bit3 (1, 0, 0), -1, 2,
|
|
139 "mode<", bit3 (1, 0, 0), -1, 2,
|
|
140 "mode>", bit3 (1, 0, 0), -1, 2,
|
|
141 "send", bit3 (0, 1, 0), 0, 1, /* 試作 */
|
|
142 NULL
|
|
143 };
|
|
144 /* last=〜unless… 入力コードの位置にしか置けず、文字列関数扱いなので
|
|
145 本処理表にしか書けない。 */
|
|
146 /* +,-,*,/,bitand,bitor,bitnot… 3バイト分の演算を行う。 */
|
|
147 /* atEOF… ファイル末尾での特別動作を指定するためのもの。但し、その
|
|
148 動作は不完全。 */
|
|
149
|
|
150 static void readhyo (), rangeset (), vchk (), singleqscan (), doubleqscan (), listscan (), ERHOPN (), ERRLIN (), ERRHYO ();
|
|
151 static int evalandcpy (), eval1cpy (), evlis (), hensrc_tourk (), serfun (), termsscan (), atermscan (), partscan (), blankpass (), modsrcL ();
|
|
152 static letter onescan (), *rangekettei ();
|
|
153
|
|
154 extern letter *ltrgrow (), letterpick (), *ltr1cut ();
|
|
155 extern char *chrcat (), *strend ();
|
|
156
|
|
157 #define IHENSU (1 << 24) /* 内部表現の上位1バイトで、変数を表す */
|
|
158 #define IKANSU (2 << 24) /* 〃 関数を表す */
|
|
159 #define IMODNM (3 << 24) /* 〃 モード名を表す */
|
|
160
|
|
161 #define ENDOF_NestFileArea ((FILE *)~0)
|
|
162
|
|
163 int tmp[64];
|
|
164
|
|
165 /* 88/06/01/ V3.1 */
|
|
166 /** 一行分のポインタを進める。 */
|
|
167 static char * /* V3.1 */
|
|
168 readln_ustrtoltr (buf, ltrbuf)
|
|
169 char *buf;
|
|
170 fast letter *ltrbuf;
|
|
171 {
|
|
172 fast int l;
|
|
173
|
|
174 if (*buf == '\0')
|
|
175 return (NULL);
|
|
176 while ((l = letterpick (&buf), is_space (l)))
|
|
177 ;
|
|
178 if ((*ltrbuf++ = l) == EOLTTR)
|
|
179 return (buf);
|
|
180 while ((*ltrbuf++ = letterpick (&buf)) != EOLTTR);
|
|
181 return (cur_rk_table->tcurread = buf);
|
|
182 }
|
|
183
|
|
184 /* 88/06/01/ V3.1 */
|
|
185 /** 一対応表の読み込み。対応表を読みながら行数をチェックする。対応表には
|
|
186 空白文字以外のコントロール文字は生では混じらないものとし、混じってい
|
|
187 たらチェックする。*/
|
|
188 static int /* V3.1 */
|
|
189 readbuf (fp, ptr)
|
|
190 fast FILE *fp;
|
|
191 fast hyobuftable *ptr;
|
|
192 {
|
|
193 fast char c, sv = '\0';
|
|
194 fast int cnt = 0; /* 一対応表の行数 */
|
|
195 fast char *s = ptr->org;
|
|
196 char *p;
|
|
197
|
|
198 cur_rk_table->tcurread = ptr->org;
|
|
199 while (fgets (ptr->tmp, ptr->size, fp))
|
|
200 {
|
|
201 p = ptr->tmp;
|
|
202 sv = '\0';
|
|
203 while (isspace (*p))
|
|
204 p++;
|
|
205 if (*p == ';')
|
|
206 continue;
|
|
207 while (c = *p)
|
|
208 {
|
|
209 if (is_cntrl (c) && !isspace (c))
|
|
210 {
|
|
211 fclose (fp);
|
|
212 sprintf (cur_rk_table->tcurread, "\\%03o", c);
|
|
213 ERRLIN (21);
|
|
214 }
|
|
215 else if (c == '\n')
|
|
216 {
|
|
217 p++;
|
|
218 if (sv == '\0')
|
|
219 continue;
|
|
220 c = '\0'; /* '\n' --> '\0' */
|
|
221 cnt++;
|
|
222 cur_rk_table->tcurread = s + 1;
|
|
223 *s++ = sv = c;
|
|
224 }
|
|
225 else
|
|
226 {
|
|
227 *s++ = sv = c;
|
|
228 p++;
|
|
229 }
|
|
230 }
|
|
231 }
|
|
232 if (*(s - 1) != '\0')
|
|
233 {
|
|
234 cnt++;
|
|
235 *s++ = '\0'; /* テキスト終端の改行記号欠如のファイルに対して有効 */
|
|
236 }
|
|
237 *s = '\0';
|
|
238 return (cnt);
|
|
239 }
|
|
240
|
|
241 /** 表全部の読み込み */
|
|
242 /* 88/06/03/ V3.1 */
|
|
243 #ifdef OMRON_LIB
|
|
244 static
|
|
245 #endif
|
|
246 void
|
|
247 readdata (filename)
|
|
248 char *filename; /* モード定義表の名又はそのパス名が入っている */
|
|
249 {
|
|
250 fast int i; /* V3.1 */
|
|
251 fast int n; /* V3.1 */
|
|
252
|
|
253 /* 88/06/09 V3.1 */
|
|
254 malloc_for_modetable_struct (&(cur_rk_table->rk_path), RK_PATH_MAX_DEF, RK_PATH_MEM_DEF);
|
|
255 malloc_for_modetable_struct (&(cur_rk_table->rk_taiouhyo), RK_TAIOUHYO_MAX_DEF, RK_TAIOUHYO_MEM_DEF);
|
|
256 malloc_for_modetable_struct (&(cur_rk_table->rk_defmode), RK_DEFMODE_MAX_DEF, RK_DEFMODE_MEM_DEF);
|
|
257 malloc_for_modetable_struct (&(cur_rk_table->rk_dspmode), RK_DSPMODE_MAX_DEF, RK_DSPMODE_MEM_DEF);
|
|
258 malloc_for_modesw (&(cur_rk_table->rk_modesw), RK_DEFMODE_MAX_DEF);
|
|
259
|
|
260 /* モード定義表の読み込み */
|
|
261 if ((n = readmode (filename)) != 0)
|
|
262 {
|
|
263 /** 領域の獲得 */
|
|
264 malloc_for_hyo (&(cur_rk_table->rk_hyo), n);
|
|
265 malloc_for_usehyo (&(cur_rk_table->rk_usehyo), n);
|
|
266 malloc_for_hensuudef (&(cur_rk_table->rk_hensuudef), RK_HENSUUDEF_MAX_DEF);
|
|
267
|
|
268 malloc_for_hensuu (&(cur_rk_table->rk_hensuu), RK_HENSUU_MAX_DEF, RK_HENSUU_MEM_DEF);
|
|
269
|
|
270 malloc_for_hyobuf (&(cur_rk_table->rk_hyobuf), RK_HYO_SIZE_DEF);
|
|
271 malloc_for_heniki (&(cur_rk_table->rk_heniki), (RK_HYO_SIZE_DEF / 2) + 1);
|
|
272
|
|
273 /* それぞれの対応表の読み込み */
|
|
274 for (i = 0; i < n; i++)
|
|
275 {
|
|
276 readhyo (i);
|
|
277 }
|
|
278 for (i = 0; i < n; i++)
|
|
279 {
|
|
280 cur_rk_table->rk_hyo.point[i].hensudef = &cur_rk_table->rk_hensuudef.point[tmp[i]];
|
|
281 }
|
|
282
|
|
283 /** 領域の解放 */
|
|
284 free_for_heniki (&(cur_rk_table->rk_heniki));
|
|
285 free_for_hyobuf (&(cur_rk_table->rk_hyobuf));
|
|
286
|
|
287 free_for_hensuu (&(cur_rk_table->rk_hensuu));
|
|
288 }
|
|
289
|
|
290 /* 88/06/07 V3.1 */
|
|
291 free_for_modetable_struct (&(cur_rk_table->rk_defmode));
|
|
292 free_for_modetable_struct (&(cur_rk_table->rk_taiouhyo));
|
|
293 free_for_modetable_struct (&(cur_rk_table->rk_path));
|
|
294
|
|
295 /* 88/06/09 V3.1 */
|
|
296 /*
|
|
297 if ((n = cur_rk_table->rk_hensuudef.count) != 0)
|
|
298 malloc_for_henmatch(&(cur_rk_table->rk_henmatch), n);
|
|
299
|
|
300 choosehyo();
|
|
301 */
|
|
302 }
|
|
303
|
|
304 /* 88/06/02 V3.1 */
|
|
305 /** 固定された(サーチパスを見る必要のない)ファイル名に対しては非0を
|
|
306 返す。現在のところ、 / ./ ../ のどれかで始まるものとしているが(作者の
|
|
307 独断)、適当に変えてよい。strchr(s,'/')!=NULL とする方が良いかも */
|
|
308 static int
|
|
309 fixednamep (s)
|
|
310 char *s;
|
|
311 {
|
|
312 return (!strncmp ("/", s, 1) || !strncmp ("./", s, 2) || !strncmp ("../", s, 3));
|
|
313 }
|
|
314
|
|
315 /** nameで与えられた名の変換対応表をオープンする。固定名と見なされない
|
|
316 名前(fixednamep()参照)に対しては、サーチパスを見る。*/
|
|
317 /* 88/06/09 V3.1 */
|
|
318 static FILE * /* V3.1 */
|
|
319 trytoopen (n, size)
|
|
320 int n; /* 対応表の番号 */
|
|
321 int *size;
|
|
322 {
|
|
323 fast char *name; /* V3.1 */
|
|
324 /*fast char **src; *//* V3.1 */
|
|
325 fast int i; /* V3.1 */
|
|
326 /*fast int cnt; *//* V3.1 */
|
|
327
|
|
328 char taio_fnm[REALFN];
|
|
329 struct stat statbuf; /* V3.1 */
|
|
330 FILE *fp; /* V3.1 */
|
|
331
|
|
332
|
|
333 /* 88/06/10 V3.1 */
|
|
334 if (fixednamep (cur_rk_table->tcurfnm = name = cur_rk_table->rk_taiouhyo.point[n]))
|
|
335 {
|
|
336 /* 88/06/09 V3.1 */
|
|
337 cur_rk_table->tcurdir = ""; /* エラー処理用 *//* V3.1 */
|
|
338 if (stat (name, &statbuf) != 0)
|
|
339 ERHOPN (1);
|
|
340 if ((fp = fopen (name, "r")) == NULL)
|
|
341 ERHOPN (2);
|
|
342 /*
|
|
343 if (cur_rk->flags & RK_VERBOS) {
|
|
344 fprintf(stderr, "romkan: using Taio-hyo %s ...\r\n",
|
|
345 name);
|
|
346 }
|
|
347 */
|
|
348 *size = statbuf.st_size;
|
|
349 return (fp);
|
|
350 }
|
|
351 else
|
|
352 {
|
|
353 /* 88/06/09 V3.1 */
|
|
354 for (i = 0; i < cur_rk_table->rk_path.count; i++)
|
|
355 {
|
|
356 strcpy (taio_fnm, (cur_rk_table->tcurdir = cur_rk_table->rk_path.point[i]));
|
|
357 strcat (taio_fnm, name);
|
|
358
|
|
359 if (stat (taio_fnm, &statbuf) != 0 || (fp = fopen (taio_fnm, "r")) == NULL)
|
|
360 continue;
|
|
361 /* Now Taio-hyo found */
|
|
362 /*
|
|
363 if (cur_rk->flags & RK_VERBOS) {
|
|
364 fprintf(stderr,
|
|
365 "romkan: using Taio-hyo %s ...\r\n",
|
|
366 taio_fnm);
|
|
367 }
|
|
368 */
|
|
369 *size = statbuf.st_size;
|
|
370 return (fp);
|
|
371 }
|
|
372 /* Taio-hyo not found */
|
|
373 #ifdef nodef
|
|
374 if (cur_rk->flags & RK_VERBOS)
|
|
375 {
|
|
376 fast char *p, *q; /* V3.1 */
|
|
377
|
|
378 fprintf (stderr, "no %s in", name);
|
|
379 for (i = 0; i < cur_rk_table->rk_path.count; i++)
|
|
380 { /* V3.1 */
|
|
381 fputc (' ', stderr);
|
|
382 p = q = cur_rk_table->rk_path.point[i]; /* V3.1 */
|
|
383 if (*q == KUGIRI && *(q + 1) == '\0')
|
|
384 q++;
|
|
385 else
|
|
386 q = strend (q);
|
|
387 for (; p < q; p++) /* V3.1 */
|
|
388 fputc (*p, stderr);
|
|
389 }
|
|
390 fprintf (stderr, ".\n");
|
|
391 }
|
|
392 #endif
|
|
393 cur_rk_table->tcurdir = ""; /* V3.1 */
|
|
394 ERHOPN (1); /* V3.1 */
|
|
395 }
|
|
396 return (NULL);
|
|
397 }
|
|
398
|
|
399 #ifdef notdef
|
|
400 /* 88/06/02 V3.1 */
|
|
401 /******************************************************************************/
|
|
402 #ifndef OMRON
|
|
403 /** linbufに入っているunsigned charの列をletterの列にしてltrbufに入れる。
|
|
404 エンドマークはEOLTTRになる。flgが非0の時は、先頭の空白文字は飛ばす。*/
|
|
405 static /* V3.1 */
|
|
406 void
|
|
407 ustrtoltr (linbuf, ltrbuf, flg)
|
|
408 uns_chr *linbuf;
|
|
409 int flg;
|
|
410 fast letter *ltrbuf; /* V3.1 */
|
|
411 {
|
|
412 fast letter l; /* V3.1 */
|
|
413
|
|
414 if (flg)
|
|
415 {
|
|
416 while (l = letterpick (&linbuf), is_eolsp (l))
|
|
417 {
|
|
418 if (l == EOLTTR)
|
|
419 {
|
|
420 *ltrbuf = EOLTTR;
|
|
421 return;
|
|
422 }
|
|
423 }
|
|
424 *ltrbuf++ = l;
|
|
425 }
|
|
426 while ((*ltrbuf++ = letterpick (&linbuf)) != EOLTTR);
|
|
427 }
|
|
428 #endif
|
|
429 /******************************************************************************/
|
|
430 #endif
|
|
431
|
|
432 /** letterを文字列にコンバート */
|
|
433 void
|
|
434 ltr1tostr (l, sptr)
|
|
435 fast char **sptr;
|
|
436 fast letter l;
|
|
437 {
|
|
438 fast int i;
|
|
439
|
|
440 for (i = 0; i < 3 && 0 == (l & (0xff000000)); i++)
|
|
441 l <<= 8;
|
|
442 for (; i < 4; i++)
|
|
443 {
|
|
444 *(*sptr)++ = (char) (l >> 24);
|
|
445 l <<= 8;
|
|
446 }
|
|
447 }
|
|
448
|
|
449 /** 変数の「現在行既出フラグ」を全てクリア */
|
|
450 static /* V3.1 */
|
|
451 void
|
|
452 hen_useflgclr (hensu, n)
|
|
453 fast hensuset *hensu; /* V3.1 */
|
|
454 fast int n; /* V3.1 */
|
|
455 {
|
|
456 for (; n > 0; n--)
|
|
457 (hensu++)->curlinflg = 0; /* 現在行に未出 */
|
|
458 }
|
|
459
|
|
460 /** 対応表一つ読み込み */
|
|
461 static /* V3.1 */
|
|
462 void
|
|
463 readhyo (n)
|
|
464 fast int n; /* V3.1 */
|
|
465 {
|
|
466 fast int i, j; /* V3.1 */
|
|
467 fast letter *lp; /* V3.1 */
|
|
468 fast int m; /* V3.1 */
|
|
469 fast hensuset *hensuptr; /* V3.1 */
|
|
470 letter ltrbuf[LINSIZ]; /* V3.1 */
|
|
471 letter termbuf[TRMSIZ], dummybuf[TRMSIZ]; /* V3.1 */
|
|
472 int hyosw, rsltyp[3];
|
|
473
|
|
474 FILE *fp; /* V3.1 */
|
|
475 int size, lines; /* V3.1 */
|
|
476 fast RomkanTable *c_r_t = cur_rk_table;
|
|
477
|
|
478 /* 88/06/11 V3.1 */
|
|
479 /* 対応表のオープン */
|
|
480 fp = trytoopen (n, &size);
|
|
481 check_and_realloc_for_hyobuf (&(c_r_t->rk_hyobuf), size);
|
|
482 c_r_t->rk_hyobuf.next = c_r_t->rk_hyobuf.org;
|
|
483 lines = readbuf (fp, &c_r_t->rk_hyobuf);
|
|
484 fclose (fp);
|
|
485
|
|
486 /* 変換データの領域の獲得と初期化、及び、対応表の種別を求める */
|
|
487 malloc_for_hyo_area (&(c_r_t->rk_hyo), n, lines, size, &datptr, &memptr);
|
|
488 hyosw = c_r_t->rk_hyo.point[n].hyoshu = filnamchk (c_r_t->rk_taiouhyo.point[n]);
|
|
489 /*
|
|
490 c_r_t->rk_hyo.point[n].hensudef = &c_r_t->rk_hensuudef.point[c_r_t->rk_hensuudef.count];
|
|
491 */
|
|
492 tmp[n] = c_r_t->rk_hensuudef.count;
|
|
493
|
|
494 check_and_realloc_for_heniki (&(c_r_t->rk_heniki), (size / 2) + 1);
|
|
495 *(hen_iki = c_r_t->rk_heniki.next = c_r_t->rk_heniki.org) = EOLTTR;
|
|
496
|
|
497 /* 88/06/10 V3.1 */
|
|
498 c_r_t->rk_hensuu.count = 0;
|
|
499 *(c_r_t->rk_hensuu.next = c_r_t->rk_hensuu.org) = EOLTTR;
|
|
500
|
|
501 c_r_t->ltrbufbgn = ltrbuf;
|
|
502 dummy = dummybuf;
|
|
503
|
|
504 /* 88/06/11/ V3.1 */
|
|
505 c_r_t->rk_hyobuf.next = c_r_t->rk_hyobuf.org;
|
|
506 while (c_r_t->rk_hyobuf.next = readln_ustrtoltr (c_r_t->rk_hyobuf.next, (ltrbufptr = ltrbuf)))
|
|
507 {
|
|
508 datptr->code[0] = NULL; /* V3.1 */
|
|
509 /*hen_useflgclr(c_r_t->rk_hensuu.org, c_r_t->rk_hensuu.count); V3.1 */
|
|
510 hen_useflgclr (c_r_t->rk_hensuu.point, c_r_t->rk_hensuu.count); /* V3.1 */
|
|
511
|
|
512 for (m = 0; termsscan (<rbufptr, term = termbuf, 1); m++)
|
|
513 {
|
|
514 /* mは、何番目の項目を見ているかを表す */
|
|
515 if (*term == ';')
|
|
516 break; /* 注釈行 */
|
|
517 if (m == 3)
|
|
518 ERRLIN (15);
|
|
519 if (m != 0 && rsltyp[0] == 4)
|
|
520 ERRLIN (12);
|
|
521
|
|
522 datptr->code[m] = memptr;
|
|
523 if ((rsltyp[m] = evalandcpy (&term, m)) == 4)
|
|
524 {
|
|
525 if (m)
|
|
526 ERRLIN (14);
|
|
527 /* 宣言は最初の項目にしか来れない。
|
|
528 funstr[]のappearフラグでもチェックしているが
|
|
529 将来のために一応ここにもチェックを入れておく。 */
|
|
530 }
|
|
531 else
|
|
532 {
|
|
533 /* 宣言の時には内部表現へのポインタは進めない */
|
|
534 totail (memptr);
|
|
535 memptr++;
|
|
536 }
|
|
537 }
|
|
538
|
|
539 if (m != 0 && rsltyp[0] != 4)
|
|
540 {
|
|
541 static letter nil[1] = { EOLTTR }; /* V3.1 */
|
|
542 for ( /* m=? */ ; m < 3; m++)
|
|
543 {
|
|
544 datptr->code[m] = nil;
|
|
545 rsltyp[m] = -1; /* doesn't exist */
|
|
546 }
|
|
547 datptr++;
|
|
548
|
|
549 /* rsltyp: 0=文字項 1=文字列連 2=データ連 3=機能項 4=宣言項 -1=存在せず */
|
|
550 switch (hyosw)
|
|
551 {
|
|
552 /* 前・後処理は、表の内容に制限がある。それを検査 */
|
|
553 case 1:
|
|
554 if (!(rsltyp[0] == 0 && rsltyp[1] == 0 && rsltyp[2] == -1))
|
|
555 ERRLIN (17);
|
|
556 break;
|
|
557 case 2:
|
|
558 if (rsltyp[1] == 3 && rsltyp[2] != -1)
|
|
559 ERRLIN (19);
|
|
560 break;
|
|
561 case 3:
|
|
562 if (!(rsltyp[0] == 0 && (rsltyp[1] == 0 || rsltyp[1] == 1) && rsltyp[2] == -1))
|
|
563 ERRLIN (18);
|
|
564 break;
|
|
565 default:
|
|
566 BUGreport (10);
|
|
567 }
|
|
568
|
|
569 }
|
|
570 }
|
|
571
|
|
572 (datptr++)->code[0] = NULL;
|
|
573
|
|
574 /* 変数登録ここでまとめてする */
|
|
575 for (lp = c_r_t->rk_heniki.org; lp < hen_iki;)
|
|
576 *memptr++ = *lp++;
|
|
577
|
|
578 for (i = 0, hensuptr = c_r_t->rk_hensuu.point; i < c_r_t->rk_hensuu.count; i++, hensuptr++)
|
|
579 {
|
|
580 if (hensuptr->regdflg == 0)
|
|
581 ERRHYO (1); /* V3.1 */
|
|
582
|
|
583 check_and_realloc_for_hensuudef (&(c_r_t->rk_hensuudef), j = c_r_t->rk_hensuudef.count, RK_HENSUUDEF_MAX_LOT);
|
|
584 c_r_t->rk_hensuudef.point[j] = memptr - (lp - hensuptr->range);
|
|
585 }
|
|
586 }
|
|
587
|
|
588 /** 変換対応表の項目一つを、解釈して、内部形式のデータエリアにコピーする。
|
|
589 返す値は、解釈した項目が文字項なら0、それ以外で文字列連なら1、それ以外
|
|
590 でデータ連なら2、機能項なら3、宣言項なら4。それ以外はエラー。*/
|
|
591 static /* V3.1 */
|
|
592 int
|
|
593 evalandcpy (socp, m)
|
|
594 fast letter **socp; /* 項目へのポインタ(へのポインタ) *//* V3.1 */
|
|
595 int m; /* 対応表の何番目の項目を見ているかを表す。入力コード部を
|
|
596 見ているときは0、出力コード部なら1、バッファ残り部なら2 */
|
|
597 {
|
|
598 #define TYPMAX 5
|
|
599
|
|
600 char exist[TYPMAX]; /* V3.1 */
|
|
601 fast char total; /* V3.1 */
|
|
602 /* existは、それぞれタイプ0〜4の項の出現のフラグ(eval1cpy()参照)。
|
|
603 totalは全体としての出現フラグ。どちらも、1=未出 2=一回出 その他の
|
|
604 時は下2ビット0 */
|
|
605 fast int type; /* V3.1 */
|
|
606
|
|
607 #define TIME_0(flag) ((flag) == 1)
|
|
608 #define TIME_1(flag) ((flag) == 2)
|
|
609 #define TIME_n(flag) (((flag) & 3) == 0)
|
|
610
|
|
611 total = 1;
|
|
612 for (type = 0; type < TYPMAX; type++)
|
|
613 exist[type] = 1;
|
|
614
|
|
615 while (!is_eolsp (**socp))
|
|
616 {
|
|
617 if (!(0 <= (type = eval1cpy (socp, m, 0)) && type < TYPMAX))
|
|
618 BUGreport (3);
|
|
619 exist[type] <<= 1;
|
|
620 total <<= 1;
|
|
621 }
|
|
622
|
|
623 if (TIME_0 (total))
|
|
624 BUGreport (13); /* 項目が空ならevalandcpyは実行しない筈 */
|
|
625 if (!TIME_0 (exist[3]) || !TIME_0 (exist[4]))
|
|
626 {
|
|
627 if (TIME_n (total))
|
|
628 ERRLIN (9);
|
|
629 return (type); /* 3又は4。typeが値を保持している筈 */
|
|
630 }
|
|
631 if (TIME_1 (total) && TIME_1 (exist[0]))
|
|
632 return (0);
|
|
633 return (!TIME_0 (exist[2]) ? 2 : 1);
|
|
634 }
|
|
635
|
|
636 /** 対応表の項目の中の項一つを解釈し、内部形式のデータエリアにコピーし、
|
|
637 それのタイプ(文字項=0 文字列項=1 特殊関数項=2 機能項=3 宣言項=4)を
|
|
638 返す。flgが非0なら、再帰的に呼ばれたことを意味し、その場合、
|
|
639 現在行に未出の変数を検出したらエラー。また、mが非0のとき(入力コード部
|
|
640 以外の所を見ている時)も、現在行に未出の変数を検出したらエラー。*/
|
|
641 static /* V3.1 */
|
|
642 int
|
|
643 eval1cpy (socp, m, flg)
|
|
644 letter **socp; /* flg以外の引数の意味はevalandcpyと同じ */
|
|
645 int m, flg;
|
|
646 {
|
|
647 letter t1buf[TRMSIZ], *t1bufp;
|
|
648
|
|
649 t1bufp = t1buf;
|
|
650
|
|
651 *memptr = EOLTTR;
|
|
652 switch (partscan (socp, t1bufp))
|
|
653 {
|
|
654 case 1: /* 単文字 */
|
|
655 memptr = ltrgrow (memptr, t1bufp);
|
|
656 *memptr = EOLTTR;
|
|
657 return (0);
|
|
658 case 2: /* 引用文字 */
|
|
659 t1bufp++;
|
|
660 *memptr++ = onescan (&t1bufp, dummy);
|
|
661 *memptr = EOLTTR;
|
|
662 return (0);
|
|
663 case 3: /* 引用文字列 */
|
|
664 t1bufp++;
|
|
665 while (*t1bufp != '"')
|
|
666 {
|
|
667 *memptr++ = onescan (&t1bufp, dummy);
|
|
668 }
|
|
669 *memptr = EOLTTR;
|
|
670 return (1);
|
|
671 case 0: /* リスト */
|
|
672 return (evlis (m, &t1bufp, flg));
|
|
673 /* evlis内で *memptr = EOLTTR; をしている。 */
|
|
674 default:
|
|
675 BUGreport (4);
|
|
676 /*NOTREACHED*/}
|
|
677 return (-1);
|
|
678 }
|
|
679
|
|
680 #define bitchk(x, n) ((x) & (1 << (n)))
|
|
681
|
|
682 #define get_ltr(lp) (*(lp)++)
|
|
683 #define unget_ltr(l, lp) (*--(lp) = (l))
|
|
684
|
|
685 /** globalなポインタから指されているletter列から一文字取ってくる。*/
|
|
686 /* *INDENT-OFF* */
|
|
687 letter
|
|
688 get1ltr ()
|
|
689 /* *INDENT-ON* */
|
|
690 {
|
|
691 return (get_ltr (lptr));
|
|
692 }
|
|
693
|
|
694 /* *INDENT-OFF* */
|
|
695 letter
|
|
696 unget1ltr (l)
|
|
697 letter l;
|
|
698 /* *INDENT-ON* */
|
|
699
|
|
700 {
|
|
701 return (unget_ltr (l, lptr));
|
|
702 }
|
|
703
|
|
704 int
|
|
705 int_get1ltr ()
|
|
706 {
|
|
707 return ((int) (get1ltr ()));
|
|
708 }
|
|
709
|
|
710 int
|
|
711 int_unget1ltr (c)
|
|
712 letter c;
|
|
713 {
|
|
714 return ((int) (unget1ltr ((letter) c)));
|
|
715 }
|
|
716
|
|
717 /** 汚いことこの上なし!なぜ関数の型のcastができないの?
|
|
718 「(int ()) get1ltr」と書きたい! */
|
|
719
|
|
720 /** includeファイル名のletter列をstringに取り出す作業を、letter列の終わり
|
|
721 まで続ける。flg & 01が非0なら、'/'でも終了。*/
|
|
722 /* *INDENT-OFF* */
|
|
723 letter
|
|
724 getfrom_dblq (socp, destp, flg)
|
|
725 letter **socp;
|
|
726 char **destp;
|
|
727 int flg;
|
|
728 /* *INDENT-ON* */
|
|
729 {
|
|
730 letter l;
|
|
731
|
|
732 while (**socp != EOLTTR && !(flg & 01 && **socp == KUGIRI))
|
|
733 {
|
|
734 if (**socp == '\\')
|
|
735 *(*destp)++ = '\\';
|
|
736 l = onescan (socp, dummy);
|
|
737 ltr1tostr (l, destp);
|
|
738 }
|
|
739 *(*destp)++ = '\0';
|
|
740 return (**socp);
|
|
741 }
|
|
742
|
|
743 int
|
|
744 getfrom_lptr (sptr, flg)
|
|
745 char **sptr;
|
|
746 int flg;
|
|
747 {
|
|
748 return ((int) getfrom_dblq (&lptr, sptr, flg));
|
|
749 }
|
|
750
|
|
751 /** リストを解釈して内部表現にする。返値は、そのリストのタイプを表す数。
|
|
752 文字変数項又は文字関数項:0 文字列関数項:1 特殊関数項:2
|
|
753 機能項:3 宣言項:4 */
|
|
754 static /* V3.1 */
|
|
755 int
|
|
756 evlis (m, socp, flg)
|
|
757 letter **socp; /* 引数の意味はeval1cpyを参照 */
|
|
758 int m, flg;
|
|
759 {
|
|
760 fast int fnnum, hennum, i; /* V3.1 */
|
|
761 letter t1buf[TRMSIZ];
|
|
762
|
|
763 (*socp)++; /* '('をスキップ */
|
|
764 atermscan (socp, t1buf, 3);
|
|
765
|
|
766 fnnum = serfun (t1buf);
|
|
767 if (fnnum != -1 && !bitchk (func[fnnum].appear, m))
|
|
768 ERRLIN (14);
|
|
769 /* mの値によって、現れてはいけない所への出現かどうか見ている。 */
|
|
770
|
|
771 switch (fnnum)
|
|
772 { /* defaultの所以外は func[fnnum].argnumを使ってない */
|
|
773 case -1: /* 変数 */
|
|
774 vchk (t1buf);
|
|
775 atermscan (socp, dummy, 2); /* あればERR */
|
|
776 hennum = hensrc_tourk (t1buf, ((m == 0 && !flg) ? 0 : 1));
|
|
777 *memptr++ = hennum | IHENSU;
|
|
778 break;
|
|
779
|
|
780 case 0: /* fn No.0 defvar */
|
|
781 atermscan (socp, t1buf, 3);
|
|
782 if (*t1buf == '(')
|
|
783 {
|
|
784 letter *soc2, t1buf2[TRMSIZ], t1buf3[TRMSIZ];
|
|
785 letter *common_hen;
|
|
786
|
|
787 atermscan (socp, t1buf3, 3);
|
|
788
|
|
789 soc2 = t1buf + 1; /* skip '(' */
|
|
790
|
|
791 atermscan (&soc2, t1buf2, 3);
|
|
792 vchk (t1buf2);
|
|
793 if (-1 != serfun (t1buf2))
|
|
794 ERRLIN (11);
|
|
795 hennum = hensrc_tourk (t1buf2, -1);
|
|
796 common_hen = rangekettei (hennum, t1buf3);
|
|
797
|
|
798 while (atermscan (&soc2, t1buf2, 0))
|
|
799 {
|
|
800 vchk (t1buf2);
|
|
801 if (-1 != serfun (t1buf2))
|
|
802 ERRLIN (11);
|
|
803 hennum = hensrc_tourk (t1buf2, -1);
|
|
804 rangeset (hennum, common_hen);
|
|
805 }
|
|
806 }
|
|
807 else
|
|
808 {
|
|
809 vchk (t1buf);
|
|
810 if (-1 != serfun (t1buf))
|
|
811 ERRLIN (11);
|
|
812 hennum = hensrc_tourk (t1buf, -1);
|
|
813 /* defvarの重複を避けるため */
|
|
814 atermscan (socp, t1buf, 3);
|
|
815 rangekettei (hennum, t1buf);
|
|
816 }
|
|
817 atermscan (socp, dummy, 2);
|
|
818 break;
|
|
819
|
|
820 case 36: /* fn No.36 defconst */
|
|
821
|
|
822 atermscan (socp, t1buf, 3);
|
|
823 vchk (t1buf);
|
|
824 if (-1 != serfun (t1buf))
|
|
825 ERRLIN (11);
|
|
826
|
|
827 hennum = hensrc_tourk (t1buf, 6);
|
|
828 /* defvar・defconstの変数名重複を避けるため */
|
|
829
|
|
830 rangeset (hennum, hen_iki);
|
|
831
|
|
832 blankpass (socp, 1);
|
|
833 if (*(*socp)++ != '\'')
|
|
834 ERRLIN (8);
|
|
835 *hen_iki++ = onescan (socp, dummy);
|
|
836 (*socp)++; /*「'」が閉じていることの検査は済んでいる */
|
|
837 *hen_iki++ = EOLTTR; /* needed? */
|
|
838 *hen_iki = EOLTTR;
|
|
839
|
|
840 atermscan (socp, dummy, 2);
|
|
841 break;
|
|
842
|
|
843 case 1: /* fn No.1 include */
|
|
844 {
|
|
845 char fnmtmparea[REALFN], *s, *dirnamptr;
|
|
846 int dummyc = 0, err;
|
|
847
|
|
848 blankpass (socp, 1);
|
|
849 if (3 != partscan (socp, t1buf))
|
|
850 ERRLIN (22);
|
|
851 atermscan (socp, dummy, 2);
|
|
852 /* 余分にあればERR */
|
|
853
|
|
854 ltr1cut (lptr = t1buf + 1);
|
|
855 *(s = fnmtmparea) = '\0';
|
|
856 err = readfnm (int_get1ltr, int_unget1ltr, getfrom_lptr, &s, &dummyc);
|
|
857
|
|
858 if (err)
|
|
859 {
|
|
860 cur_rk_table->hcurread = s;
|
|
861 switch (err)
|
|
862 {
|
|
863 case 1:
|
|
864 case 3:
|
|
865 ERRLIN (25);
|
|
866 case 2:
|
|
867 ERRLIN (26);
|
|
868 case 4:
|
|
869 ERRLIN (27);
|
|
870 }
|
|
871 }
|
|
872 de_bcksla (fnmtmparea, fnmtmparea);
|
|
873
|
|
874 if (*++(cur_rk_table->base) == ENDOF_NestFileArea)
|
|
875 {
|
|
876 (cur_rk_table->base)--;
|
|
877 ERRLIN (23);
|
|
878 }
|
|
879 *(cur_rk_table->base) = trytoopen (fnmtmparea, &dirnamptr, &err);
|
|
880 if (err)
|
|
881 {
|
|
882 switch (err)
|
|
883 {
|
|
884 case 1:
|
|
885 case 3:
|
|
886 case 2:
|
|
887 case 4:
|
|
888 (cur_rk_table->base)--;
|
|
889 ERRLIN (24);
|
|
890 }
|
|
891 }
|
|
892 }
|
|
893 break;
|
|
894
|
|
895 /* モード名一つを引数に取るもの */
|
|
896 case 4: /* fn No.4〜6 off,on,switch */
|
|
897 case 5:
|
|
898 case 6:
|
|
899 case 20: /* fn No.20,21 if,unless */
|
|
900 case 21:
|
|
901 *memptr++ = fnnum | IKANSU;
|
|
902 atermscan (socp, t1buf, 3);
|
|
903 *memptr++ = modsrcL (t1buf) | IMODNM;
|
|
904 break;
|
|
905
|
|
906 /* モード名と文字 一つずつを引数に取るもの */
|
|
907 case 37: /* fn No.37〜43 setmodeなど */
|
|
908 case 38:
|
|
909 case 39:
|
|
910 case 40:
|
|
911 case 41:
|
|
912 case 42:
|
|
913 /*
|
|
914 case 43:
|
|
915 {
|
|
916 int err, n;
|
|
917 modetyp stat;
|
|
918
|
|
919 *memptr++ = fnnum | IKANSU;
|
|
920 atermscan(socp, t1buf, 3);
|
|
921 *memptr++ = (n = modsrcL(t1buf))| IMODNM;
|
|
922 atermscan(socp, t1buf, 3);
|
|
923 err = chkL_get_int(t1buf, &stat,
|
|
924 modesw[n] . moderng);
|
|
925 if(err != 0) ERRLIN(29);
|
|
926 *memptr++ = stat;
|
|
927 atermscan(socp, t1buf, 2);
|
|
928 break;
|
|
929 }
|
|
930 */
|
|
931
|
|
932 /* 普通(引数を取らないものを含む) */
|
|
933 default: /* toupper,tolower… */
|
|
934 *memptr++ = fnnum | IKANSU;
|
|
935 *memptr = EOLTTR;
|
|
936 for (i = 0; i < func[fnnum].argnum; i++)
|
|
937 {
|
|
938 blankpass (socp, 1);
|
|
939 if (eval1cpy (socp, m, 1) != 0)
|
|
940 ERRLIN (13);
|
|
941 }
|
|
942 atermscan (socp, dummy, 2); /* 余分にあればERR */
|
|
943 break;
|
|
944 }
|
|
945 *memptr = EOLTTR;
|
|
946 return (fnnum == -1 ? 0 : func[fnnum].fntype);
|
|
947 }
|
|
948
|
|
949 /** 文字列中の「\」を抜く */
|
|
950 void
|
|
951 de_bcksla (s, r)
|
|
952 char *s, *r;
|
|
953 {
|
|
954 for (; *s; *r++ = *s++)
|
|
955 if (*s == '\\')
|
|
956 s++;
|
|
957 *r = '\0';
|
|
958 }
|
|
959
|
|
960 /** defvarの第二引数(shikiに入る)を解釈して、その変数の変域を決定する。
|
|
961 変数列の最後にエンドマークもちゃんと入る。返値は、変域を格納した
|
|
962 所へのポインタ。*/
|
|
963 static /* V3.1 */
|
|
964 letter *
|
|
965 rangekettei (num, shiki)
|
|
966 letter *shiki;
|
|
967 int num; /* 変域を決定しつつある変数の内部番号 */
|
|
968 {
|
|
969 letter hyoukabuf[TRMSIZ];
|
|
970
|
|
971 rangeset (num, hen_iki);
|
|
972 *hen_iki = EOLTTR;
|
|
973
|
|
974 if (*shiki++ != '(')
|
|
975 ERRLIN (8);
|
|
976 atermscan (&shiki, hyoukabuf, 1);
|
|
977
|
|
978 if (!ltrstrcmp (hyoukabuf, "all"))
|
|
979 {
|
|
980 *hen_iki++ = VARRNG;
|
|
981 *hen_iki++ = 0;
|
|
982 *hen_iki++ = LTRHUG; /* 変域は全文字 */
|
|
983 *hen_iki++ = EOLTTR;
|
|
984 *hen_iki = EOLTTR;
|
|
985 atermscan (&shiki, dummy, 2); /* 余分にあればERR */
|
|
986 }
|
|
987 else if (!ltrstrcmp (hyoukabuf, "between"))
|
|
988 {
|
|
989 int i;
|
|
990
|
|
991 *hen_iki++ = VARRNG;
|
|
992 while (blankpass (&shiki, 1), *shiki != ')')
|
|
993 {
|
|
994 for (i = 1; i <= 2; i++)
|
|
995 {
|
|
996 switch (*shiki)
|
|
997 {
|
|
998 case '\'':
|
|
999 shiki++;
|
|
1000 *hen_iki++ = onescan (&shiki, dummy);
|
|
1001 shiki++;
|
|
1002 break;
|
|
1003 case ')':
|
|
1004 case '"':
|
|
1005 case '(':
|
|
1006 ERRLIN (8);
|
|
1007 default:
|
|
1008 *hen_iki++ = *shiki++;
|
|
1009 }
|
|
1010 if (i < 2)
|
|
1011 {
|
|
1012 if (!is_eolsp (*shiki))
|
|
1013 ERRLIN (8);
|
|
1014 blankpass (&shiki, 1);
|
|
1015 }
|
|
1016 }
|
|
1017 }
|
|
1018 *hen_iki++ = EOLTTR;
|
|
1019 *hen_iki = EOLTTR;
|
|
1020 }
|
|
1021 else if (!ltrstrcmp (hyoukabuf, "list"))
|
|
1022 {
|
|
1023 while (blankpass (&shiki, 1), *shiki != ')')
|
|
1024 {
|
|
1025 switch (*shiki)
|
|
1026 {
|
|
1027 case '"':
|
|
1028 case '(':
|
|
1029 ERRLIN (8);
|
|
1030 case '\'':
|
|
1031 shiki++;
|
|
1032 *hen_iki++ = onescan (&shiki, dummy);
|
|
1033 shiki++; /* 本当に「'」が閉じているか
|
|
1034 どうかの検査はもう済んでいる。 */
|
|
1035 break;
|
|
1036 default:
|
|
1037 *hen_iki++ = *shiki++;
|
|
1038 }
|
|
1039 if (!is_eolsp (*shiki))
|
|
1040 ERRLIN (8);
|
|
1041 }
|
|
1042 *hen_iki++ = EOLTTR;
|
|
1043 *hen_iki = EOLTTR;
|
|
1044 }
|
|
1045 else
|
|
1046 {
|
|
1047 ERRLIN (8); /* 将来はこの他の構文も許す予定であった */
|
|
1048 }
|
|
1049
|
|
1050 return (cur_rk_table->rk_hensuu.point[num].range); /* V3.1 */
|
|
1051 }
|
|
1052
|
|
1053 /** num番目の変数の変域を指すべきポインタの指し先を決定し、その変数を
|
|
1054 既登録状態にする。*/
|
|
1055 static /* V3.1 */
|
|
1056 void
|
|
1057 rangeset (num, range)
|
|
1058 letter *range; /* 変域の入る場所のポインタ */
|
|
1059 int num;
|
|
1060 {
|
|
1061 cur_rk_table->rk_hensuu.point[num].range = range; /* V3.1 */
|
|
1062 cur_rk_table->rk_hensuu.point[num].regdflg = 1; /* V3.1 */
|
|
1063 }
|
|
1064
|
|
1065
|
|
1066 /** nameで指定された名の変数を探し、なければ登録。変数名の最後に
|
|
1067 エンドマークもちゃんと入る。
|
|
1068 flgが1の時、その名の変数が現在行に未出ならエラー。また、flgが-1の時、
|
|
1069 その名の変数が既定義ならエラー(defvarの重複チェック用)。*/
|
|
1070 static /* V3.1 */
|
|
1071 int
|
|
1072 hensrc_tourk (name, flg)
|
|
1073 letter *name;
|
|
1074 int flg;
|
|
1075 {
|
|
1076 fast int n; /* V3.1 */
|
|
1077 fast hensuset *hensuptr; /* V3.1 */
|
|
1078 fast hensuutable *hentptr = &cur_rk_table->rk_hensuu;
|
|
1079
|
|
1080 /* 88/06/06 V3.1 */
|
|
1081 for (n = 0; n < hentptr->count; n++)
|
|
1082 {
|
|
1083 if (ltrcmp (hentptr->point[n].name, name))
|
|
1084 continue;
|
|
1085 /* found */
|
|
1086 if (flg == -1 && hentptr->point[n].regdflg != 0)
|
|
1087 ERRLIN (10);
|
|
1088 if (flg == 1 && hentptr->point[n].curlinflg == 0)
|
|
1089 ERRLIN (5);
|
|
1090 hentptr->point[n].curlinflg = 1;
|
|
1091 return (n);
|
|
1092 }
|
|
1093
|
|
1094 /* ここへ来たということは、初出の変数と言うこと。当然、flgが1なら
|
|
1095 エラー。 */
|
|
1096 if (flg == 1)
|
|
1097 ERRLIN (5);
|
|
1098
|
|
1099 check_and_realloc_for_hensuu (hentptr, n, name, RK_HENSUU_MAX_LOT, RK_HENSUU_MEM_LOT);
|
|
1100
|
|
1101 hensuptr = &hentptr->point[n];
|
|
1102 hensuptr->name = hentptr->next;
|
|
1103 hensuptr->curlinflg = 1;
|
|
1104 hensuptr->regdflg = 0; /* 初出だからrangeのdefは未だの筈 */
|
|
1105 hentptr->next = ltrgrow (hensuptr->name, name);
|
|
1106 *(++(hentptr->next)) = EOLTTR;
|
|
1107 return (n);
|
|
1108 }
|
|
1109
|
|
1110 #define ltrtostr(lp, c) \
|
|
1111 { \
|
|
1112 for (;*lp != EOLTTR && *lp; *c++ = (char)(*lp++ & 0xff)); \
|
|
1113 *c = '\0'; \
|
|
1114 }
|
|
1115 /** 組み込み関数・機能名に対してはその番号を、そうでないものなら-1を返す */
|
|
1116 static /* V3.1 */
|
|
1117 int
|
|
1118 serfun (lp)
|
|
1119 fast letter *lp; /* 関数・機能名もしくは変数名 *//* V3.1 */
|
|
1120 {
|
|
1121 fast int i; /* V3.1 */
|
|
1122 char tmp[32];
|
|
1123 fast char *c, *tmp_p = tmp;
|
|
1124
|
|
1125 ltrtostr (lp, tmp_p);
|
|
1126 for (i = 0; c = func[i].fnname; i++)
|
|
1127 {
|
|
1128 if (!strcmp (tmp, c))
|
|
1129 return (i);
|
|
1130 }
|
|
1131 /*
|
|
1132 for(i = 0; func[i] . fnname != NULL; i++){
|
|
1133 if(! ltrstrcmp(lp, func[i] . fnname)) return(i);
|
|
1134 }
|
|
1135 */
|
|
1136 return (-1);
|
|
1137 }
|
|
1138
|
|
1139 /** 変数の名前のチェック おかしいとエラー */
|
|
1140 static /* V3.1 */
|
|
1141 void
|
|
1142 vchk (lp)
|
|
1143 fast letter *lp; /* V3.1 */
|
|
1144 {
|
|
1145 if (is_digit (*lp))
|
|
1146 ERRLIN (3);
|
|
1147 for (; *lp != EOLTTR; lp++)
|
|
1148 {
|
|
1149 /* if(is_lower(*lp)) *lp = to_upper(*lp); */
|
|
1150 if (!is_alnum (*lp) && *lp != '_')
|
|
1151 ERRLIN (3);
|
|
1152 }
|
|
1153 }
|
|
1154
|
|
1155 /** 一項目を取り出す。取り出しに成功すると1を返す。flgが非0の時は、')'が
|
|
1156 見つかるとエラー、';'はそれだけで一項目扱い。*/
|
|
1157 static /* V3.1 */
|
|
1158 int
|
|
1159 termsscan (socp, dest, flg)
|
|
1160 fast letter **socp, *dest; /* V3.1 */
|
|
1161 /* socpの指しているポインタが指している所から取り出してdestに入れる。
|
|
1162 その後、socpが指しているポインタを進める。このファイルの **scan()
|
|
1163 という関数は全てそうなってる。 */
|
|
1164 int flg;
|
|
1165 {
|
|
1166 fast letter *bgn; /* V3.1 */
|
|
1167
|
|
1168 bgn = dest;
|
|
1169
|
|
1170 if (blankpass (socp, 0) == 0)
|
|
1171 {
|
|
1172 if (flg && **socp == ';')
|
|
1173 {
|
|
1174 *dest++ = *(*socp)++;
|
|
1175 }
|
|
1176 else
|
|
1177 while (!is_eolsp (**socp))
|
|
1178 {
|
|
1179 if (**socp == ')')
|
|
1180 {
|
|
1181 if (flg)
|
|
1182 ERRLIN (0);
|
|
1183 break;
|
|
1184 }
|
|
1185 else
|
|
1186 {
|
|
1187 partscan (socp, dest);
|
|
1188 totail (dest);
|
|
1189 }
|
|
1190 }
|
|
1191 }
|
|
1192
|
|
1193 *dest = EOLTTR;
|
|
1194 return (bgn != dest);
|
|
1195 }
|
|
1196
|
|
1197 /** リスト一つか、単純項の一まとまりを取り出す。成功したら1を返す。
|
|
1198 flgが1のとき、')'が見つかるとエラー。
|
|
1199 flgが2のとき、取り出しに成功したらエラー。
|
|
1200 flgが3のとき、取り出しに失敗したらエラー。*/
|
|
1201 static /* V3.1 */
|
|
1202 int
|
|
1203 atermscan (socp, dest, flg)
|
|
1204 fast letter **socp, *dest; /* V3.1 */
|
|
1205 int flg;
|
|
1206 {
|
|
1207 fast letter *bgn; /* V3.1 */
|
|
1208 fast int found; /* V3.1 */
|
|
1209
|
|
1210 bgn = dest;
|
|
1211
|
|
1212 if (blankpass (socp, 0) == 0)
|
|
1213 {
|
|
1214 if (**socp == '(')
|
|
1215 {
|
|
1216 listscan (socp, dest);
|
|
1217 totail (dest);
|
|
1218 }
|
|
1219 else
|
|
1220 {
|
|
1221 while (!is_eolsp (**socp) && **socp != '(')
|
|
1222 {
|
|
1223 if (**socp == ')')
|
|
1224 {
|
|
1225 if (flg == 1)
|
|
1226 ERRLIN (0);
|
|
1227 break;
|
|
1228 }
|
|
1229 else
|
|
1230 {
|
|
1231 partscan (socp, dest);
|
|
1232 totail (dest);
|
|
1233 }
|
|
1234 }
|
|
1235 }
|
|
1236 }
|
|
1237
|
|
1238 *dest = EOLTTR;
|
|
1239
|
|
1240 found = (bgn != dest);
|
|
1241 if (!found && flg == 3 || found && flg == 2)
|
|
1242 ERRLIN (7);
|
|
1243 return (found);
|
|
1244 }
|
|
1245
|
|
1246 /** 項一つを取り出す。取り出したものがリストなら返値は0、単文字なら1、
|
|
1247 引用文字なら2、引用文字列なら3。*/
|
|
1248 static /* V3.1 */
|
|
1249 int
|
|
1250 partscan (socp, dest)
|
|
1251 fast letter **socp, *dest; /* V3.1 */
|
|
1252 {
|
|
1253 switch (**socp)
|
|
1254 {
|
|
1255 case '(':
|
|
1256 listscan (socp, dest);
|
|
1257 return (0);
|
|
1258 case '\'':
|
|
1259 singleqscan (socp, dest);
|
|
1260 return (2);
|
|
1261 case '"':
|
|
1262 doubleqscan (socp, dest);
|
|
1263 return (3);
|
|
1264 default:
|
|
1265 *dest++ = *(*socp)++;
|
|
1266 *dest = EOLTTR;
|
|
1267 return (1);
|
|
1268 }
|
|
1269 }
|
|
1270
|
|
1271 /** シングルクォート表現一つを取り出す。*/
|
|
1272 static /* V3.1 */
|
|
1273 void
|
|
1274 singleqscan (socp, dest)
|
|
1275 fast letter **socp, *dest; /* V3.1 */
|
|
1276 {
|
|
1277 *dest++ = *(*socp)++;
|
|
1278 onescan (socp, dest);
|
|
1279 totail (dest);
|
|
1280 if ((*dest++ = *(*socp)++) != '\'')
|
|
1281 ERRLIN (1);
|
|
1282
|
|
1283 *dest = EOLTTR;
|
|
1284 }
|
|
1285
|
|
1286 /** ダブルクォート表現一つを取り出す。*/
|
|
1287 static /* V3.1 */
|
|
1288 void
|
|
1289 doubleqscan (socp, dest)
|
|
1290 fast letter **socp, *dest; /* V3.1 */
|
|
1291 {
|
|
1292 *dest++ = *(*socp)++;
|
|
1293 while (**socp != '"')
|
|
1294 {
|
|
1295 if (**socp == EOLTTR)
|
|
1296 ERRLIN (1);
|
|
1297 onescan (socp, dest);
|
|
1298 totail (dest);
|
|
1299 }
|
|
1300 *dest++ = *(*socp)++;
|
|
1301
|
|
1302 *dest = EOLTTR;
|
|
1303 }
|
|
1304
|
|
1305 /** 8・10・16進コード用キャラクタを実際のコードに直す。入力のチェックは
|
|
1306 せず、英文字と数字以外の入力に対しては単に0を返す。*/
|
|
1307 #ifdef OMRON_LIB
|
|
1308 static
|
|
1309 #endif
|
|
1310 int
|
|
1311 ltov (l)
|
|
1312 fast letter l; /* V3.1 */
|
|
1313 {
|
|
1314 if (is_upper (l))
|
|
1315 return (l - 'A' + 10);
|
|
1316 if (is_lower (l))
|
|
1317 return (l - 'a' + 10);
|
|
1318 if (is_digit (l))
|
|
1319 return (l - '0');
|
|
1320 else
|
|
1321 return (0);
|
|
1322 }
|
|
1323
|
|
1324 /** ltovの逆 */
|
|
1325 #ifdef OMRON_LIB
|
|
1326 static
|
|
1327 #endif
|
|
1328 letter
|
|
1329 vtol (l)
|
|
1330 fast letter l; /* V3.1 */
|
|
1331 {
|
|
1332 if (BASEMX <= l)
|
|
1333 return ('*');
|
|
1334 return (l + (l < 10 ? '0' : 'A' - 10));
|
|
1335 }
|
|
1336
|
|
1337 /** シングル・ダブルクォートの中での一文字取り出し。
|
|
1338 「^」によるコントロールコード表現、「\」による8・10・16進表現にも
|
|
1339 対応。「\」表現は、「\[o又はd又はx]数字の並び[;]」である。*/
|
|
1340 static /* V3.1 */
|
|
1341 letter
|
|
1342 onescan (socp, dest)
|
|
1343 fast letter **socp, *dest; /* V3.1 */
|
|
1344 {
|
|
1345 fast letter l, realcode; /* V3.1 */
|
|
1346 fast int digflg; /* V3.1 */
|
|
1347
|
|
1348 switch (realcode = *dest++ = *(*socp)++)
|
|
1349 {
|
|
1350 case '^':
|
|
1351 if (!(' ' <= (l = *(*socp)++) && l < '\177'))
|
|
1352 ERRLIN (2);
|
|
1353 realcode = ((*dest++ = l) == '?' ? '\177' : l & 0x1f);
|
|
1354 break;
|
|
1355 case '\\':
|
|
1356 digflg = 0;
|
|
1357 switch (**socp)
|
|
1358 {
|
|
1359 case 'n':
|
|
1360 *dest++ = *(*socp)++;
|
|
1361 realcode = '\n';
|
|
1362 break;
|
|
1363 case 't':
|
|
1364 *dest++ = *(*socp)++;
|
|
1365 realcode = '\t';
|
|
1366 break;
|
|
1367 case 'b':
|
|
1368 *dest++ = *(*socp)++;
|
|
1369 realcode = '\b';
|
|
1370 break;
|
|
1371 case 'r':
|
|
1372 *dest++ = *(*socp)++;
|
|
1373 realcode = '\r';
|
|
1374 break;
|
|
1375 case 'f':
|
|
1376 *dest++ = *(*socp)++;
|
|
1377 realcode = '\f';
|
|
1378 break;
|
|
1379 case 'e':
|
|
1380 case 'E':
|
|
1381 *dest++ = *(*socp)++;
|
|
1382 realcode = ESCCHR;
|
|
1383 break;
|
|
1384 case 'o':
|
|
1385 *dest++ = *(*socp)++;
|
|
1386 for (realcode = 0; is_octal (**socp);)
|
|
1387 {
|
|
1388 digflg = 1;
|
|
1389 realcode <<= 3;
|
|
1390 realcode += ltov (*dest++ = *(*socp)++);
|
|
1391 }
|
|
1392 if (!digflg)
|
|
1393 ERRLIN (2);
|
|
1394 if (**socp == ';')
|
|
1395 *dest++ = *(*socp)++;
|
|
1396 break;
|
|
1397 case 'x':
|
|
1398 *dest++ = *(*socp)++;
|
|
1399 for (realcode = 0; is_xdigit (**socp);)
|
|
1400 {
|
|
1401 digflg = 1;
|
|
1402 realcode <<= 4;
|
|
1403 realcode += ltov (*dest++ = *(*socp)++);
|
|
1404 }
|
|
1405 if (!digflg)
|
|
1406 ERRLIN (2);
|
|
1407 if (**socp == ';')
|
|
1408 *dest++ = *(*socp)++;
|
|
1409 break;
|
|
1410 case 'd':
|
|
1411 *dest++ = *(*socp)++;
|
|
1412 for (realcode = 0; is_digit (**socp);)
|
|
1413 {
|
|
1414 digflg = 1;
|
|
1415 realcode *= 10;
|
|
1416 realcode += ltov (*dest++ = *(*socp)++);
|
|
1417 }
|
|
1418 if (!digflg)
|
|
1419 ERRLIN (2);
|
|
1420 if (**socp == ';')
|
|
1421 *dest++ = *(*socp)++;
|
|
1422 break;
|
|
1423 default:
|
|
1424 if (is_octal (**socp))
|
|
1425 {
|
|
1426 for (realcode = 0; is_octal (**socp);)
|
|
1427 {
|
|
1428 realcode <<= 3;
|
|
1429 realcode += ltov (*dest++ = *(*socp)++);
|
|
1430 }
|
|
1431 if (**socp == ';')
|
|
1432 *dest++ = *(*socp)++;
|
|
1433 }
|
|
1434 else
|
|
1435 {
|
|
1436 realcode = *dest++ = *(*socp)++;
|
|
1437 }
|
|
1438 }
|
|
1439 break;
|
|
1440 default:;
|
|
1441 }
|
|
1442 *dest = EOLTTR;
|
|
1443 return (realcode);
|
|
1444 }
|
|
1445
|
|
1446 /** letterの列の先頭にある空白をスキップする。
|
|
1447 行末に達したら、flgが0のときは1を返し、そうでないとエラー。*/
|
|
1448 static /* V3.1 */
|
|
1449 int
|
|
1450 blankpass (pptr, flg)
|
|
1451 fast letter **pptr; /* V3.1 */
|
|
1452 /* letterの列のポインタへのポインタ。これが指しているものを進める */
|
|
1453 int flg;
|
|
1454 {
|
|
1455 register letter *p = *pptr;
|
|
1456
|
|
1457 while (is_space (*p))
|
|
1458 p = ++(*pptr);
|
|
1459 if (EOLTTR == *p)
|
|
1460 {
|
|
1461 if (flg)
|
|
1462 ERRLIN (4);
|
|
1463 return (1);
|
|
1464 }
|
|
1465 /*
|
|
1466 while(is_eolsp(**pptr)){
|
|
1467 if(EOLTTR == **pptr){
|
|
1468 if(flg) ERRLIN(4);
|
|
1469 return(1);
|
|
1470 }
|
|
1471 (*pptr)++;
|
|
1472 }
|
|
1473 */
|
|
1474 return (0);
|
|
1475 }
|
|
1476
|
|
1477 /** リスト一個取り出し */
|
|
1478 static /* V3.1 */
|
|
1479 void
|
|
1480 listscan (socp, dest)
|
|
1481 fast letter **socp, *dest; /* V3.1 */
|
|
1482 {
|
|
1483 fast int eofreach; /* V3.1 */
|
|
1484
|
|
1485 *dest++ = *(*socp)++; /* = '(' */
|
|
1486 *dest++ = ' ';
|
|
1487
|
|
1488 while (eofreach = blankpass (socp, 0), **socp != ')')
|
|
1489 {
|
|
1490 if (eofreach)
|
|
1491 {
|
|
1492 /* 88/06/02/ V3.1 */
|
|
1493 if ((cur_rk_table->rk_hyobuf.next = readln_ustrtoltr (cur_rk_table->rk_hyobuf.next, (*socp = cur_rk_table->ltrbufbgn))) == NULL)
|
|
1494 ERRLIN (20);
|
|
1495 /* listの中で行が切れている場合、一行追加読み込みを
|
|
1496 する。uns_chr用のバッファも、letter用のものも、
|
|
1497 以前の物を先頭から再利用しているので注意。また、
|
|
1498 エラーが起きた場合、 エラーの位置にかかわらず、
|
|
1499 現在行として表示されるのは、最後に読まれた行のみ */
|
|
1500 }
|
|
1501 else
|
|
1502 {
|
|
1503 termsscan (socp, dest, 0);
|
|
1504 totail (dest);
|
|
1505 *dest++ = ' ';
|
|
1506 }
|
|
1507 }
|
|
1508 *dest++ = *(*socp)++; /* = ')' */
|
|
1509 *dest = EOLTTR;
|
|
1510
|
|
1511 }
|
|
1512
|
|
1513 /** lpで指定されたモード名を探す。見つからないとエラー */
|
|
1514 static /* V3.1 */
|
|
1515 int
|
|
1516 modsrcL (lp)
|
|
1517 letter *lp;
|
|
1518 {
|
|
1519 fast int n; /* V3.1 */
|
|
1520
|
|
1521 /* 88/06/07 V3.1 */
|
|
1522 for (n = 0; n < cur_rk_table->rk_defmode.count; n++)
|
|
1523 if (!ltrstrcmp (lp, cur_rk_table->rk_defmode.point[n]))
|
|
1524 return (n);
|
|
1525
|
|
1526 ERRLIN (16);
|
|
1527 /*NOTREACHED*/ return (0);
|
|
1528 }
|
|
1529
|
|
1530 /** この先は、表読み込みでエラった時に警告するルーチン。nはエラーコード。
|
|
1531 ermesという配列が用意されてないものは、今の所エラーメッセージが
|
|
1532 一つしかないもの。その場合エラーコードも今の所0のみ。
|
|
1533 またこれらは全て、romkan_initのエラーコードとして、longjmp経由で
|
|
1534 1を返す。*/
|
|
1535
|
|
1536
|
|
1537 static /* V3.1 */
|
|
1538 void
|
|
1539 ERHOPN (n) /* 変換対応表がオープンできない */
|
|
1540 fast unsigned int n; /* V3.1 */
|
|
1541 {
|
|
1542 static char *ermes[] = {
|
|
1543 /* 0 */ "Unprintable error",
|
|
1544 "Taio-hyo doesn't exist",
|
|
1545 "Can't open Taio-hyo",
|
|
1546 };
|
|
1547
|
|
1548 if (n >= numberof (ermes))
|
|
1549 n = 0;
|
|
1550
|
|
1551 fprintf (stderr, "\r\nromkan: Taio-hyo %s%s ---\r\n", cur_rk_table->tcurdir, cur_rk_table->tcurfnm);
|
|
1552 fprintf (stderr, "\tError No.%d: %s.\r\n", n, ermes[n]);
|
|
1553 longjmp (cur_rk_table->env0, 1);
|
|
1554 }
|
|
1555
|
|
1556
|
|
1557 static /* V3.1 */
|
|
1558 void
|
|
1559 ERRLIN (n) /* 変換対応表のエラー */
|
|
1560 fast unsigned int n; /* V3.1 */
|
|
1561 {
|
|
1562 static char *ermes[] = {
|
|
1563 /* 0 */ "')' mismatch",
|
|
1564 "Incomplete single-quote or double-quote expression",
|
|
1565 "Illegal ^,\\o,\\x or \\d expression",
|
|
1566 "Illegal variable name",
|
|
1567 "Incomplete line",
|
|
1568 /* 5 */ "Evaluation of unbound variable",
|
|
1569 "Unprintable error",
|
|
1570 "Too many or too few contents of list",
|
|
1571 "Illegal defvar",
|
|
1572 "Faculity or declaration joined other item(s)",
|
|
1573 /* 10 */ "Duplicate defvar",
|
|
1574 "Variable name conflicts with Function name",
|
|
1575 "A line contains both declaration and other output item(s)",
|
|
1576 "Argument isn't a letter",
|
|
1577 "Function, faculity or declaration in illegal place",
|
|
1578 /* 15 */ "More than 3 items",
|
|
1579 "Undefined mode",
|
|
1580 "Against the restriction of pre-transform table",
|
|
1581 "Against the restriction of after-transform table",
|
|
1582 "Item comes after faculity",
|
|
1583 /* 20 */ "Incomplete list",
|
|
1584 "Illegal character",
|
|
1585 };
|
|
1586
|
|
1587 if (n >= numberof (ermes))
|
|
1588 n = 6;
|
|
1589
|
|
1590 fprintf (stderr, "\r\nromkan: Taio-hyo %s%s ---\r\n%s\r\n", cur_rk_table->tcurdir, cur_rk_table->tcurfnm, cur_rk_table->tcurread);
|
|
1591 fprintf (stderr, "\tError No.%d: %s.\r\n", n, ermes[n]);
|
|
1592 longjmp (cur_rk_table->env0, 1);
|
|
1593 }
|
|
1594
|
|
1595 /* 88/06/10 V3.1 */
|
|
1596 static /* V3.1 */
|
|
1597 void
|
|
1598 ERRHYO (n) /* ERRLINと同様、対応表のエラーだが、一行だけの誤りでなく
|
|
1599 全体を見ないとわからない誤り。「未定義変数の出現」 */
|
|
1600 fast unsigned int n; /* V3.1 */
|
|
1601 {
|
|
1602 static char *ermes[] = {
|
|
1603 /* 0 */ "Unprintable error",
|
|
1604 "Undefined variable was found",
|
|
1605 };
|
|
1606
|
|
1607 if (n >= numberof (ermes))
|
|
1608 n = 0;
|
|
1609
|
|
1610 fprintf (stderr, "\r\nromkan: Taio-hyo %s%s ---\r\n", cur_rk_table->tcurdir, cur_rk_table->tcurfnm);
|
|
1611 fprintf (stderr, "Error No.%d: %s\r\n", n, ermes[n]);
|
|
1612 longjmp (cur_rk_table->env0, 1);
|
|
1613 }
|