mirror of
https://github.com/irssi/irssi.git
synced 2026-08-18 16:12:30 +02:00
12 lines
258 B
C
12 lines
258 B
C
|
|
#ifndef __TRANSLATION_H
|
||
|
|
#define __TRANSLATION_H
|
||
|
|
|
||
|
|
extern unsigned char translation_in[256], translation_out[256];
|
||
|
|
|
||
|
|
int translation_read(const char *file);
|
||
|
|
void translate_output(char *text);
|
||
|
|
|
||
|
|
void translation_init(void);
|
||
|
|
void translation_deinit(void);
|
||
|
|
|
||
|
|
#endif
|