input.c 543 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. *
  5. * Author: Ceriel J.H. Jacobs
  6. */
  7. /* I N S T A N T I A T I O N O F I N P U T P A C K A G E */
  8. /* $Id$ */
  9. #include "f_info.h"
  10. struct f_info file_info;
  11. #include "input.h"
  12. #include <inp_pkg.body>
  13. AtEoIF()
  14. {
  15. /* Make the unstacking of input streams noticable to the
  16. lexical analyzer
  17. */
  18. return 1;
  19. }
  20. AtEoIT()
  21. {
  22. /* Make the end of the text noticable
  23. */
  24. return 1;
  25. }