aboutsummaryrefslogtreecommitdiff
path: root/src/trans.h
blob: 5c70804f66d88feaa6973e30a017f5ca76c94e21 (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
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
/*
   This file is part of Ellinika project.
   Copyright (C) 2004 Sergey Poznyakoff

   Ellinika is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   Ellinika is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with Ellinika; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include "list.h"
#include "mem.h"

extern char *file_name;
extern int input_line;

enum gram_item_type {
	item_node,
	item_list
};
 
struct gram_item {
	enum gram_item_type type;
	union {
		RAD_LIST *list;
		struct node *node;
	} v;
};
 
struct header {
	u_char *key;
	int pos;
	u_char *forms;
};

struct node {
	RAD_LIST *header;
	RAD_LIST *descr;
};

enum descr_type {
	descr_topic,
	descr_meaning,
	descr_antonym,
	descr_xref
};

struct descr {
	enum descr_type type;
	u_char *value;
};

extern RAD_LIST *node_list;

extern struct node *create_node(RAD_LIST *hdr, RAD_LIST *descr);

void make_m4_args (char *m4_bin, RAD_LIST *include_list);
void open_input(int argc, char **argv);
int parse(int argc, char **argv);
int sql_query(char *fmt, ...);
int sql_query_n(unsigned long *pret, char *fmt, ...);
size_t sql_num_tuples();

extern char *sql_database;
extern char *sql_host;
extern int sql_port;
extern char *sql_password;
extern char *sql_user;
extern int debug;

Return to:

Send suggestions and report system problems to the System administrator.