fork download
  1. %option noyywrap
  2.  
  3. %{
  4. int char_count = 0;
  5. int word_count = 0;
  6. int line_count = 0;
  7. %}
  8.  
  9. %%
  10. \n { line_count++; }
  11. [a-zA-Z0-9]+ { word_count++; }
  12. . { char_count++; }
  13.  
  14. %%
  15.  
  16. int main(int argc, char **argv) {
  17. if (argc > 1) {
  18. yyin = fopen(argv[1], "r");
  19. if (!yyin) {
  20. perror(argv[1]);
  21. return 1;
  22. }
  23. }
  24.  
  25. yylex();
  26.  
  27. if (yyin != stdin) {
  28. fclose(yyin);
  29. }
  30.  
  31. printf("Characters: %d\n", char_count);
  32. printf("Words: %d\n", word_count);
  33. printf("Lines: %d\n", line_count);
  34.  
  35. return 0;
  36. }
Success #stdin #stdout #stderr 0.02s 6972KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
ERROR: /home/C7tIkQ/prog:4:4: Syntax error: Operator expected
ERROR: /home/C7tIkQ/prog:36:0: Syntax error: Unexpected end of file
ERROR: '$runtoplevel'/0: Undefined procedure: program/0
   Exception: (3) program ? EOF: exit