Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. %{
  2. #include"exemplo.tab.h"
  3. %}
  4.  
  5. %%
  6.  
  7. ISEP|ISCAP|ESE yylval.str=yytext; return NOME_ESCOLA;
  8. [1-9][0-9]{3,} yylval.n=atoi(yytext); return NUM_MAIOR_999;
  9. 1(0[1-9]|[1-9][1-9]|[1-9]0|[0-9]{3,})[1-9]*|[2-9][0-9]{2,} yylval.n=atoi(yytext); return NUM_MAIOR_100;
  10. \"[^"]{1,40}\" yylval.str=yytext; return STR_40;
  11. [ \t\n] /* ignore */
  12.  
  13. . return 1;
  14. <<EOF>> return 0;
  15.  
  16. %%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement