Integer values can be specified according to the following format:
nnn
0nnn
0xnnn
or 0Xnnn
Where n represents a digit in the appropriate base.
Literal strings are characters enclosed by double quote characters, such
as "This is an example of a string". Literal strings that are separated
by white space are concatenated and treated as one string for the purpose
of interpreting the MIF file.
The literal escape character is the backslash (\) and is used to enter the
following characters:
Sequence
\a
Alert (ring terminal bell)
\b
\f
\n
\r
\t
\v
\\
\"
\xnn
Hexadecimal
bit pattern. If the MIF file is in ISO 8859-1 format, the bit pattern can
be one to two digits (\0 to \ff); if the file is in Unicode format, the
bit pattern can be one to four digits (\0 to \ffff).
\ooo
Octal bit pattern. If the MIF file is in ISO
8859-1 format, the bit pattern can be one to three digits (\0 to \377);
if the file is in Unicode format, the bit pattern can be one to six digits
(\0 to \177777). bit pattern, octal
[Back]
[Next]