tokenarray.h 399 B

12345678910111213
  1. /* This file is part of the software similarity tester SIM.
  2. Written by Dick Grune, Vrije Universiteit, Amsterdam.
  3. $Id: tokenarray.h,v 1.1 2001/09/28 09:03:42 dick Exp $
  4. */
  5. #include "token.h"
  6. /* Interface for the token storage */
  7. extern void InitTokenArray(void);
  8. extern void StoreToken(void);
  9. extern unsigned int TextLength(void); /* also first free token position */
  10. extern TOKEN *TokenArray;