.
History
The basic character set of theImplementations
Trigraphs are not commonly encountered outsideTRIGRAPH.EXE
), to be used only when trigraph processing is desired (the rationale was to maximise speed of compilation).
Language support
Different systems define different sets of digraphs and trigraphs, as described below.ALGOL
Early versions of ALGOL predated the standardized ASCII and EBCDIC character sets, and were typically implemented using a manufacturer-specific:=
for ←
(assignment) and >=
for ≥
(greater than or equal).
Pascal
The(.
, .)
, (*
and *)
for , ">/code>,
/code>,
respectively. Unlike all other cases mentioned here, (*
and *)
were and still are in wide use. However, many compilers treat them as a different type of commenting block rather than as actual digraphs, that is, a comment started with (*
cannot be closed with }
and vice versa.
J
The J programming language is a descendant of APL but uses the ASCII character set rather than APL symbols. Because the printable range of ASCII is smaller than APL's specialized set of symbols, .
(dot) and :
(colon) characters are used to inflect ASCII symbols, effectively interpreting unigraphs, digraphs or rarely trigraphs as standalone "symbols".
Unlike the use of digraphs and trigraphs in C and C++, there are no single-character equivalents to these in J.
C
The C preprocessor (used for C and with slight differences in C++; see below
Below may refer to:
*Earth
*Ground (disambiguation)
*Soil
*Floor
*Bottom (disambiguation)
Bottom may refer to:
Anatomy and sex
* Bottom (BDSM), the partner in a BDSM who takes the passive, receiving, or obedient role, to that of the top or ...
) replaces all occurrences of the nine trigraph sequences in this table by their single-character equivalents before any other processing(until C23)
.
A programmer may want to place two question marks together yet not have the compiler treat them as introducing a trigraph. The C grammar does not permit two consecutive ?
tokens, so the only places in a C file where two question marks in a row may be used are in multi-character constants, string literals, and comments. This is particularly a problem for the classic Mac OS
Mac OS (originally System Software; retronym: Classic Mac OS) is the series of operating systems developed for the Macintosh family of personal computers by Apple Computer from 1984 to 2001, starting with System 1 and ending with Mac OS 9. The ...
, where the constant '????'
may be used as a file type or creator. To safely place two consecutive question marks within a string literal, the programmer can use string concatenation "...?""?..."
or an escape sequence "...?\?..."
.
???
is not itself a trigraph sequence, but when followed by a character such as -
it will be interpreted as ?
+ ??-
, as in the example below which has 16 ?
s before the /
.
The ??/
trigraph can be used to introduce an escaped newline for line splicing; this must be taken into account for correct and efficient handling of trigraphs within the preprocessor. It can also cause surprises, particularly within comments. For example:
which is a single logical comment line (used in C++ and C99
C99 (previously known as C9X) is an informal name for ISO/IEC 9899:1999, a past version of the C programming language standard. It extends the previous version ( C90) with new features for the language and the standard library, and helps impl ...
), and
which is a correctly formed block comment. The concept can be used to check for trigraphs as in the following C99 example, where only one return statement will be executed.
In 1994, a normative amendment to the C standard, included in C99, supplied digraphs as more readable alternatives to five of the trigraphs.
Unlike trigraphs, digraphs are handled during tokenization, and any digraph must always represent a full token by itself, or compose the token %:%:
replacing the preprocessor concatenation token ##
. If a digraph sequence occurs inside another token, for example a quoted string, or a character constant, it will not be replaced.
C++
C++ (through C++14, see below
Below may refer to:
*Earth
*Ground (disambiguation)
*Soil
*Floor
*Bottom (disambiguation)
Bottom may refer to:
Anatomy and sex
* Bottom (BDSM), the partner in a BDSM who takes the passive, receiving, or obedient role, to that of the top or ...
) behaves like C, including the C99 additions, but with additional tokens listed in the table.
As a note, %:%:
is treated as a single token, rather than two occurrences of %:
.
In the sequence <::
if the subsequent character is neither :
nor >
, the <
is treated as a preprocessing token by itself and not as the first character of the alternative token <:
. This is done so certain uses of templates are not broken by the substitution.
The C++ Standard makes this comment with regards to the term "digraph":
Trigraphs were proposed for deprecation in C++0x, which was released as C++11
C++11 is a version of the ISO/IEC 14882 standard for the C++ programming language. C++11 replaced the prior version of the C++ standard, called C++03, and was later replaced by C++14. The name follows the tradition of naming language versions by ...
. This was opposed by IBM, speaking on behalf of itself and other users of C++, and as a result trigraphs were retained in C++11. Trigraphs were then proposed again for removal (not only deprecation) in C++17
C++17 is a version of the ISO/IEC 14882 standard for the C++ programming language. C++17 replaced the prior version of the C++ standard, called C++14, and was later replaced by C++20.
History
Before the C++ Standards Committee fixed a 3-year rel ...
. This passed a committee vote, and trigraphs (but not the additional tokens) are removed from C++17 despite the opposition from IBM. Existing code that uses trigraphs can be supported by translating from the source files (parsing trigraphs) to the basic source character set that does not include trigraphs.
RPL
Hewlett-Packard
The Hewlett-Packard Company, commonly shortened to Hewlett-Packard ( ) or HP, was an American multinational information technology company headquartered in Palo Alto, California. HP developed and provided a wide variety of hardware components ...
calculators supporting the RPL language and input method provide support for a large number of trigraphs (also called ''TIO codes'') to reliably transcribe non-seven-bit ASCII characters of the calculators' extended character set on foreign platforms, and to ease keyboard input without using the application. The first character of all TIO codes is a \
, followed by two other ASCII characters vaguely resembling the glyph to be substituted. All other characters can be entered using the special \nnn
TIO code syntax with nnn being a three-digit decimal number (with leading zero
A leading zero is any 0 digit that comes before the first nonzero digit in a number string in positional notation.. For example, James Bond's famous identifier, 007, has two leading zeros. Any zeroes appearing to the left of the first non-zero d ...
s if necessary) of the corresponding code point (thereby formally representing a '' tetragraph'').
Application support
Vim
The Vim text editor supports digraphs for actual entry of text characters, following . The entry of digraphs is bound
Bound or bounds may refer to:
Mathematics
* Bound variable
* Upper and lower bounds, observed limits of mathematical functions
Physics
* Bound state, a particle that has a tendency to remain localized in one or more regions of space
Geography
*B ...
to by default. The list of all possible digraphs in Vim can be displayed by typing .
GNU Screen
GNU Screen has a digraph command, bound to by default.
Lotus
Lotus 1-2-3 for DOS uses as compose key
A compose key (sometimes called multi key) is a key on a computer keyboard that indicates that the following (usually 2 or more) keystrokes trigger the insertion of an alternate character, typically a precomposed character or a symbol.
For insta ...
to allow easier input of many special characters of the Lotus International Character Set The Lotus International Character Set (LICS) is a proprietary single-byte character encoding introduced in 1985 by Lotus Development Corporation. It is based on the 1983 DEC Multinational Character Set (MCS) for VT220 terminals. As such, LICS is ...
(LICS) and Lotus Multi-Byte Character Set (LMBCS).
See also
* Compose key
A compose key (sometimes called multi key) is a key on a computer keyboard that indicates that the following (usually 2 or more) keystrokes trigger the insertion of an alternate character, typically a precomposed character or a symbol.
For insta ...
* List of XML and HTML character entity references
* Escape sequence
* Escape sequences in C
* C alternative tokens
C alternative tokens refer to a set of alternative spellings of common operators in the C programming language. They are implemented as a group of macro constants in the C standard library in the iso646.h header. The tokens were created by Bjarne ...
References
External links
* {{IETF_RFC, 1345
C (programming language)
Character encoding
Input/output