|
another flex & yacc question
hello
flex by default generates the yylex function and yacc generates the yyparse() function.
yylex() is invoked by yyparse().
Are there any macros available through which i can give these functions my own names. Like for yylex() i would like to give my_yylex() and for yyparse() i would like to give my_yyparse()
thank you
|