Added SILC Thread Queue API
[crypto.git] / apps / irssi / src / fe-common / core / translation.h
1 #ifndef __TRANSLATION_H
2 #define __TRANSLATION_H
3
4 extern unsigned char translation_in[256], translation_out[256];
5
6 int translation_read(const char *file);
7 void translate_output(char *text);
8
9 void translation_init(void);
10 void translation_deinit(void);
11
12 #endif