mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
c95034c6de
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@171 dbcabf3a-b0e7-0310-adc4-f8d773084564
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
|