Re: Flex/Bison converter doesn't stop on EOF

2023-12-05 Thread Steve Litt
Piotr Siupa said on Tue, 5 Dec 2023 20:27:15 +0100 >Fragment from the manual >(https://westes.github.io/flex/manual/Generated-Scanner.html): >"When the scanner receives an end-of-file indication from YY_INPUT, it >then checks the yywrap() function. If yywrap() returns false (zero), >then it is ass

Re: Flex/Bison converter doesn't stop on EOF

2023-12-05 Thread Piotr Siupa
Fragment from the manual (https://westes.github.io/flex/manual/Generated-Scanner.html): "When the scanner receives an end-of-file indication from YY_INPUT, it then checks the yywrap() function. If yywrap() returns false (zero), then it is assumed that the function has gone ahead and set up yyin to

Flex/Bison converter doesn't stop on EOF

2023-12-05 Thread Steve Litt
Hi all, I've written a Flex source file and Bison source file, linked together with the Flex derived scanner acting as a library for the Bison derived parser. The resulting executable does exactly what I want it to do: Replace every instance of the string "ball" in stdin with the string "Hello wor