/* * Global stuff for translation tables. * * Tomten, tomten@solace.hsh.se / tomten@lysator.liu.se * * @(#)$Id: translat.h,v 1.10 2000/04/01 07:39:59 mrg Exp $ */ #ifndef __translat_h_ # define __translat_h_ void set_translation _((u_char *)); void enter_digraph _((u_int, u_char *)); u_char get_digraph _((u_int)); void digraph _((u_char *, u_char *, u_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_ */ .