summaryrefslogtreecommitdiff
path: root/Build/source/texk/makejvf/usrtable.h
blob: 61343ff8040104a9bf3b872e6db32a991a8d0106 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#define BUF_SIZE 1024
#define MAX_TABLE 1024
#define MAX_CHAR_TABLE 32768
extern int usertable_replace_max,usertable_move_max,usertable_charset_max;

struct USERTABLE_REPLACE {
	int codepoint;
	int newcodepoint;
};
extern struct USERTABLE_REPLACE usertable_replace[];
struct USERTABLE_MOVE {
	int codepoint;
	double moveright;
	double movedown;
};
extern struct USERTABLE_MOVE usertable_move[];
struct USERTABLE_CHARSET {
	long min, max;
};
extern struct USERTABLE_CHARSET usertable_charset[];

/* usrtable.c */
void get_usertable(char *name);