Alessandro Bonazzi e075990ed3 Patch level : 12.0 no-patch
Files correlati     :
Commento            :

Aggiunto il preprocessore c++ mcpp per sostituire il compilatore nella compilazione delle maschere.
2020-11-28 16:24:08 +01:00

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. */
/* ?? ??? ??% ??^ ?#; */
?? ??? ??% ??^ ???=;