mirror of
https://github.com/uffejakobsen/acme.git
synced 2024-11-22 18:32:09 +00:00
b451573f00
git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@59 4df02467-bbd4-4a76-a152-e7ce94205b78
18 lines
378 B
C
18 lines
378 B
C
// ToACME - converts other source codes to ACME format.
|
|
// Copyright (C) 1999-2006 Marco Baye
|
|
// Have a look at "main.c" for further info
|
|
//
|
|
// Converting CBM screen code to ISO 8859/1
|
|
#ifndef scr2iso_H
|
|
#define scr2iso_H
|
|
|
|
#include "config.h"
|
|
|
|
|
|
// constants
|
|
extern const char SCR2ISO_table[256]; // Conversion table
|
|
#define SCR2ISO(v) (SCR2ISO_table[(unsigned char) v])
|
|
|
|
|
|
#endif
|