blob: 48b2c3dc0cafb65376806eb0741958e950eecf32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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
|