stream.h 436 B

1234567891011121314151617
  1. /* This file is part of the software similarity tester SIM.
  2. Written by Dick Grune, Vrije Universiteit, Amsterdam.
  3. $Id: stream.h,v 2.4 1998/02/03 14:28:36 dick Exp $
  4. */
  5. /*
  6. Interface of the stream module.
  7. Implements the direct interaction with the lexical
  8. module. It supplies the routines below.
  9. */
  10. #include "token.h"
  11. extern int OpenStream(const char *);
  12. extern int NextStreamTokenObtained(void);
  13. extern void CloseStream(void);