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