| 595 | #endif |
| 596 | |
| 597 | static char * dupyytext() |
| 598 | { |
| 599 | char* s; |
| 600 | if (yyleng>0) yytext[yyleng-1] = '\0'; |
| 601 | s = omStrDup((char *)yytext); |
| 602 | omMarkAsStaticAddr(s); |
| 603 | return s; |
| 604 | } |
| 605 | |
| 606 | static char * dupyytextNL() |
| 607 | { |
no test coverage detected