scan.l
Upload User: blenddy
Upload Date: 2007-01-07
Package Size: 6495k
Code Size: 0k
Category:

Database system

Development Platform:

Unix_Linux

  1. %{
  2. /*
  3. This should work, but non-patched flex 2.5.3 fails because input()
  4. doesn't return EOF or ''
  5. Bruce Momjian <root@candle.pha.pa.us>
  6. */
  7. %}
  8. %%
  9. . {
  10. int ch;
  11. while ((ch = input()) != EOF && ch != '')
  12. ;
  13. }