I read that it's mandotary to write %noyywrap
or define a yywrap()
function.
What if I default a yywrap()
function in which I don't make any changes to yyin
variable and return 0, what will happen in this case?
0 means that FLEX should must continue parsing other input files but does flex insert null inside yyin
variable one it's done parsing it or in this case it goes for infinite loop?