Home | History | Annotate | Download | only in manual

Lines Matching refs:STRING

23 %x STRING
33 BEGIN(STRING);
35 <STRING>\n {
36 yyerror("Unterminated string");
40 <STRING><<EOF>> {
41 yyerror("EOF in string");
45 <STRING>[^\\\n"] {
50 <STRING>\\\n /* ignore this */
51 <STRING>\\{hex} {
62 <STRING>\\{oct} {
73 <STRING>\\[^\n] {
87 <STRING>\" {
88 printf("string = \"%s\"",buffer);