2024-10-10

This commit is contained in:
2024-10-10 12:56:56 +08:00
commit 7b347c848a
2648 changed files with 643965 additions and 0 deletions

13
core/sim/sim_3_01/hash.h Normal file
View File

@@ -0,0 +1,13 @@
/* This file is part of the software similarity tester SIM.
Written by Dick Grune, Vrije Universiteit, Amsterdam.
$Id: hash.h,v 1.5 2016-04-27 12:59:11 dick Exp $
*/
/* Creating and consulting forward_reference[], used to speed up
the Longest Substring Allgorithm.
*/
extern void Make_Forward_References(void);
extern void Free_Forward_References(void);
/* with circularity check: */
extern size_t Forward_Reference(size_t i, size_t i0);