Home | History | Annotate | Download | only in manual

Lines Matching refs:STRING

16 %x STRING
19 \" BEGIN(STRING);
21 <STRING>[^\\\n"]* yymore();
22 <STRING><<EOF>> yyerror("EOF in string."); BEGIN(INITIAL);
23 <STRING>\n yyerror("Unterminated string."); BEGIN(INITIAL);
24 <STRING>\\\n {
29 <STRING>\" {
31 printf("string = \"%s\"",yytext); BEGIN(INITIAL);