changed the literal notations of a raw string, a byte string, a raw byte string to have the @ sign before b, r, br, rb

This commit is contained in:
2020-11-08 17:23:25 +00:00
parent a532d65335
commit 44bfa42a69
10 changed files with 258 additions and 71 deletions

View File

@ -1,14 +1,6 @@
@pragma entry main
function ensure (a, b, desc, line)
{
if (a != b)
{
printf ("FAILURE[%d] %s\n", line, desc);
exit (-1);
}
}
@include "ensure.inc";
function call_by_ref_1(&a, b, &c)
{