File: tbl.h

package info (click to toggle)
mmorph 2.3.4.2-17
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,248 kB
  • sloc: ansic: 4,986; yacc: 1,215; lex: 417; makefile: 259; sh: 48; sed: 33; csh: 26
file content (27 lines) | stat: -rw-r--r-- 629 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
    mmorph, MULTEXT morphology tool
    Version 2.3, October 1995
    Copyright (c) 1994,1995 ISSCO/SUISSETRA, Geneva, Switzerland
    Dominique Petitpierre, <petitp@divsun.unige.ch>
*/

#ifndef tbl_h
#define tbl_h

#define NUL_CHAR	'\0'
#define FIELD_SEP	'\t'
#define SUBFIELD_SEP	'|'
#define SUBSUBFIELD_SEP	'\\'
#define RECORD_SEP	'\n'
/* UNKNOWN_MORPH should contain the SUBSUBFIELD_SEP */
#define UNKNOWN_MORPH	"??\\??"

/* ordinal number of specific fields, numbering from 0 */
#define form_field	2
#define class_field	1
#define morph_field	3

extern void lookup_tbl();
extern t_boolean fold_case();

#endif	/* tbl_h */