/* File CKCXLA.H System-independent character-set translation header file for C-Kermit. */ /* Author: Frank da Cruz (fdc@columbia.edu, FDCCU@CUVMA.BITNET), Columbia University Academic Information Systems, New York City. Copyright (C) 1985, 1993, Trustees of Columbia University in the City of New York. The C-Kermit software may not be, in whole or in part, licensed or sold for profit as a software product itself, nor may it be included in or distributed with commercial products or otherwise distributed by commercial concerns to their clients or customers without written permission of the Office of Kermit Development and Distribution, Columbia University. This copyright notice must not be removed, altered, or obscured. */ #ifndef CKCXLA_H /* Guard against multiple inclusion */ #define CKCXLA_H #ifndef KANJI /* Systems including Kanji support by default */ #ifdef OS2 /* OS/2... */ #define KANJI #endif /* OS2 */ #endif /* KANJI */ #ifdef NOKANJI /* Except if NOKANJI is defined. */ #ifdef KANJI #undef KANJI #endif /* KANJI */ #endif /* NOKANJI */ /* Disable all support for all classes of character sets if NOCSETS is defined. */ #ifdef NOCSETS #ifdef KANJI #undef KANJI #endif /* KANJI */ #ifdef CYRILLIC #undef CYRILLIC #endif /* CYRILLIC */ #ifdef LATIN2 #undef LATIN2 #endif /* LATIN2 */ #ifdef HEBREW #undef HEBREW #endif /* HEBREW */ #else /* Rest of this file... */ #ifndef NOLATIN2 /* If they didn't say "no Latin-2" */ #ifndef LATIN2 /* Then if LATIN2 isn't already */ #define LATIN2 /* defined, define it. */ #endif /* LATIN2 */ #endif /* NOLATIN2 */ #ifndef NOCYRIL /* If they didn't say "no Cyrillic" */ #ifndef CYRILLIC /* Then if CYRILLIC isn't already */ #define CYRILLIC /* defined, define it. */ #endif /* CYRILLIC */ #endif /* NOCYRIL */ #ifndef NOHEBREW /* If they didn't say "no Hebrew" */ #ifndef HEBREW /* Then if HEBREW isn't already */ #define HEBREW /* defined, define it. */ #endif /* HEBREW */ #endif /* NOHEBREW */ /* File ckcxla.h -- Character-set-related definitions, system independent */ /* Codes for Kermit Transfer Syntax Level (obsolete) */ #define TS_L0 0 /* Level 0 (Transparent) */ #define TS_L1 1 /* Level 1 (one standard character set) */ #define TS_L2 2 /* Level 2 (multiple character sets in same file) */ #define UNK 63 /* Symbol to use for unknown character (63 = ?) */ /* Codes for the base alphabet of a given character set. These are assigned in roughly ISO 8859 order. (Each is assumed to include ASCII/Roman.) */ #define AL_UNIV 0 /* Universal (like ISO 10646) */ #define AL_ROMAN 1 /* Roman (Latin) alphabet */ #define AL_CYRIL 2 /* Cyrillic alphabet */ #define AL_ARABIC 3 /* Arabic */ #define AL_GREEK 4 /* Greek */ #define AL_HEBREW 5 /* Hebrew */ #define AL_KANA 6 /* Japanese Katakana */ #define AL_JAPAN 7 /* Japanese Katakana+Kanji ideograms */ #define AL_HAN 8 /* Chinese/Japanese/Korean ideograms */ #define AL_INDIA 9 /* Indian scripts (ISCII) */ #define AL_VIET 10 /* Vietnamese (VISCII) */ /* Add more here... */ #define AL_UNK 999 /* Unknown (transparent) */ /* Codes for languages */ /* NOTE: It would perhaps be better to use ISO 639-1988 2-letter "Codes for Representation of Names of Languages" here, shown in the comments below. */ #define L_ASCII 0 /* EN ASCII, English */ #define L_USASCII 0 /* EN ASCII, English */ #define L_DUTCH 1 /* NL Dutch */ #define L_FINNISH 2 /* FI Finnish */ #define L_FRENCH 3 /* FR French */ #define L_GERMAN 4 /* DE German */ #define L_HUNGARIAN 5 /* HU Hungarian */ #define L_ITALIAN 6 /* IT Italian */ #define L_NORWEGIAN 7 /* NO Norwegian */ #define L_PORTUGUESE 8 /* PT Portuguese */ #define L_SPANISH 9 /* ES Spanish */ #define L_SWEDISH 10 /* SV Swedish */ #define L_SWISS 11 /* RM Swiss (Rhaeto-Romance) */ #define L_DANISH 12 /* DA Danish */ #define L_ICELANDIC 13 /* IS Icelandic */ #define L_RUSSIAN 14 /* RU Russian */ #define L_JAPANESE 15 /* JA Japanese */ #define L_HEBREW 16 /* IW Hebrew */ #define MAXLANG 16 /* Number of languages */ /* File character-sets are defined in the system-specific ck?xla.h file, except for the following one, which must be available to all versions: */ #define FC_TRANSP 254 /* Transparent */ /* Designators for Kermit's transfer character sets. These are all standard sets, or based on them. Symbols must be unique in the first 8 characters, because some C preprocessors have this limit. */ /* LIST1 */ #define TC_TRANSP 0 /* Transparent, no character translation */ #define TC_USASCII 1 /* US 7-bit ASCII */ #define TC_1LATIN 2 /* ISO 8859-1, Latin-1 */ #define TC_2LATIN 3 /* ISO 8859-2, Latin-2 */ #define TC_CYRILL 4 /* ISO 8859-5, Latin/Cyrillic */ #define TC_JEUC 5 /* Japanese EUC */ #define TC_HEBREW 6 /* ISO 8859-8, Latin/Hebrew */ #define MAXTCSETS 6 /* Highest Transfer Character Set Number */ #ifdef COMMENT /* Not used yet. */ #define TC_3LATIN 7 /* ISO 8859-3, Latin-3 */ #define TC_4LATIN 8 /* ISO 8859-4, Latin-4 */ #define TC_5LATIN 9 /* ISO 8859-9, Latin-5 */ #define TC_ARABIC 10 /* ISO-8859-6, Latin/Arabic */ #define TC_GREEK 11 /* ISO-8859-7, Latin/Greek */ #define TC_JIS208 12 /* Japanese JIS X 0208 multibyte set */ #define TC_CHINES 13 /* Chinese Standard GB 2312-80 */ #define TC_KOREAN 14 /* Korean KS C 5601-1987 */ #define TC_I10646 15 /* ISO DIS 10646 (not defined yet) */ /* etc... */ #endif /* COMMENT */ /* Structure for character-set information */ struct csinfo { char *name; /* Descriptive name of character set */ int size; /* Size (e.g. 128, 256, 16384) */ int code; /* Like TC_1LATIN, etc. */ char *designator; /* Designator, like I2/100 = Latin-1 */ int alphabet; /* Base alphabet */ char *keyword; /* Keyword for this character-set */ }; /* Structure for language information */ struct langinfo { int id; /* Language ID code (L_whatever) */ int fc; /* File character set to use */ int tc; /* Transfer character set to use */ char *description; /* Description of language */ }; /* Now take in the system-specific definitions */ #ifdef UNIX #include "ckuxla.h" #endif /* UNIX */ #ifdef OSK /* OS-9 */ #include "ckuxla.h" #endif /* OS-9 */ #ifdef VMS /* VAX/VMS */ #include "ckuxla.h" #endif /* VMS */ #ifdef GEMDOS /* Atari ST */ #include "ckuxla.h" #endif /* GEMDOS */ #ifdef MAC /* Macintosh */ #include "ckmxla.h" #endif /* MAC */ #ifdef OS2 /* OS/2 */ #include "ckuxla.h" /* Uses big UNIX version */ #endif /* OS2 */ #ifdef AMIGA /* Commodore Amiga */ #include "ckuxla.h" #endif /* AMIGA */ #ifdef datageneral /* Data General MV AOS/VS */ #include "ckuxla.h" #endif /* datageneral */ #ifdef STRATUS /* Stratus Computer, Inc. VOS */ #include "ckuxla.h" #endif /* STRATUS */ #endif /* NOCSETS */ #endif /* CKCXLA_H */ #ifdef KANJI _PROTOTYP( int xkanjf, (void) ); _PROTOTYP( int xkanjz, (int (*)(char)) ); _PROTOTYP( int xkanji, (int, int (*)(char)) ); #endif /* KANJI */ /* End of ckcxla.h */