Table 14-1 summarizes the datatypes of the Ctx package.
Table 14-1 Summary of Datatypes; Ctx Package
| Datatype | Description | 
|---|---|
| encoding | A single supported encoding. | 
| encodings | An array of encodings. | 
A single supported encoding.
typedef struct encoding {
   oratext *encname;
   oratext *encvalue;
} encoding;
An array of encodings.
typedef struct encodings {
   unsigned num;
   encoding *enc; 
} encodings;