mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 06:57:59 +02:00
13 lines
402 B
C
13 lines
402 B
C
/* 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);
|