File: translat.h

package info (click to toggle)
scrollz 1.8m-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 3,616 kB
  • ctags: 4,000
  • sloc: ansic: 69,789; tcl: 2,866; sh: 503; makefile: 462
file content (30 lines) | stat: -rw-r--r-- 732 bytes parent folder | download | duplicates (2)
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
/*
 * Global stuff for translation tables.
 *
 * Tomten, tomten@solace.hsh.se / tomten@lysator.liu.se
 *
 * $Id: translat.h,v 1.3 2000/08/14 20:38:13 f Exp $
 */

#ifndef __translat_h_
# define __translat_h_

	void	set_translation _((char *));
	void	enter_digraph _((u_int, char *));
	u_char	get_digraph _((u_int));
	void	digraph _((char *, char *, char *));
	void	save_digraphs _((FILE *));

extern	u_char	transToClient[256];
extern	u_char	transFromClient[256];
extern	char	translation;

# define DIG_TABLE_SIZE 256
extern	u_char	dig_table_lo[DIG_TABLE_SIZE];
extern	u_char	dig_table_hi[DIG_TABLE_SIZE];
extern	u_char	dig_table_di[DIG_TABLE_SIZE];

extern	char	digraph_hit;
extern	u_char	digraph_first;

#endif /* __translat_h_ */