mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
13 lines
258 B
C
13 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
|