hash.h 402 B

123456789101112
  1. /* This file is part of the software similarity tester SIM.
  2. Written by Dick Grune, Vrije Universiteit, Amsterdam.
  3. $Id: hash.h,v 1.1 1997/06/20 12:03:14 dick Exp $
  4. */
  5. /* Creating and consulting the ForwardReference array; to speed up
  6. the Longest Substring Allgorithm.
  7. */
  8. extern void MakeForwardReferences(void);
  9. extern void FreeForwardReferences(void);
  10. extern unsigned int ForwardReference(int i);