aboutsummaryrefslogtreecommitdiff
path: root/src/trans.h
blob: 1244cab49030f35748fa568662428af45ac98672 (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
#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;
	char *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;
};

struct xref {
	unsigned long index;
	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, ...);

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.