simple problem

"[email protected]" <[email protected]>
Newsgroups gmane.comp.parsers.bison.general
Message-ID <[email protected]>
Hi again, i have the following code:

%{
#include <stdio.h>
#include <stdlib.h>
%}

%%

^[ \t]+[a-zA-Z]+\( { printf("%s is a function definition\n", yytext); }
.|\n            { /* do nothing */ }

%%

int main(int argc, char **argv)
{

     yylex();

     return(0);
}

but when i try in >  \t234welcome( i also get the output %s is a 
function string. how to avoid this behaviour ?


best regards!


_______________________________________________
[email protected] https://lists.gnu.org/mailman/listinfo/help-bison
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.