Alessandro Bonazzi
e075990ed3
Files correlati : Commento : Aggiunto il preprocessore c++ mcpp per sostituire il compilatore nella compilazione delle maschere.
16 lines
412 B
Raku
16 lines
412 B
Raku
/* n_1.t: Conversion of trigraph sequences. */
|
|
|
|
/* 1.1: The following 9 sequences are valid trigraph sequences. */
|
|
/* [ ] \ ^ { } | ~ #; */
|
|
??( ??) ??/ ??' ??< ??> ??! ??- ??=;
|
|
|
|
/* 1.2: In directive line. */
|
|
/* ab | cd; */
|
|
??= define OR( a, b) a ??! b
|
|
OR( ab, cd);
|
|
|
|
/* 1.3: Any sequence other than above 9 is not a trigraph sequence. */
|
|
/* ?? ??? ??% ??^ ?#; */
|
|
?? ??? ??% ??^ ???=;
|
|
|