CharTableSet

Far Manager

CharTableSet

The CharTableSet structure contains a set of arrays describing a FAR character table. This structure is used by the CharTable function.
struct CharTableSet
{
  unsigned char DecodeTable[256];
  unsigned char EncodeTable[256];
  unsigned char UpperTable[256];
  unsigned char LowerTable[256];
  char TableName[128];
};

Elements

DecodeTable
Table to decode the given codepage to the DOS (OEM) codepage.
EncodeTable
Table to encode from DOS (OEM) codepage to the given codepage.
UpperTable
Lowercase to uppercase conversion table.
LowerTable
Uppercase to lowercase conversion table.
TableName
Name of the character table.
See also: