mirror of
https://github.com/SDL-Hercules-390/hyperion.git
synced 2026-04-20 10:52:18 +02:00
12 lines
391 B
C
12 lines
391 B
C
/* CODEPAGE.H (c) Copyright Jan Jaeger, 1999-2003 */
|
|
/* Code Page conversion */
|
|
|
|
#ifndef _HERCULES_CODEPAGE_H
|
|
#define _HERCULES_CODEPAGE_H
|
|
|
|
extern void set_codepage(char *name);
|
|
extern unsigned char host_to_guest (unsigned char byte);
|
|
extern unsigned char guest_to_host (unsigned char byte);
|
|
|
|
#endif /* _HERCULES_CODEPAGE_H */
|