Next: Is there a way to make flex treat NULL like a regular character?, Previous: How do I match any string not matched in the preceding rules?, Up: FAQ [Contents][Index]
Those are internal variables pointing into the AT&T scanner’s input buffer. I
imagine they’re being manipulated in user versions of the input()
and unput()
functions. If so, what you need to do is analyze those functions to figure out
what they’re doing, and then replace input()
with an appropriate definition of
YY_INPUT
. You shouldn’t need to (and must not) replace
flex
’s unput()
function.