Difference between revisions of "Talk:Interview Dusoulier (2000) Rayward"

From LIS History
Line 11: Line 11:
 
}
 
}
 
...
 
...
lex convert.lex -ll -o convert
+
gcc lex.yy.c -ll -o convert
 
</source>
 
</source>

Revision as of 15:11, 16 April 2021

Lex script

cat <<... >convert.lex
%%
^"{{;Smallcaps"   printf("{{;Petites capitales");
%%
main()
{
  yylex();
}
...
gcc lex.yy.c -ll -o convert