mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 10:31:44 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			399 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			399 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*	This file is part of the software similarity tester SIM.
 | |
| 	Written by Dick Grune, Vrije Universiteit, Amsterdam.
 | |
| 	$Id: tokenarray.h,v 1.1 2001/09/28 09:03:42 dick Exp $
 | |
| */
 | |
| 
 | |
| #include	"token.h"
 | |
| 
 | |
| /* Interface for the token storage */
 | |
| extern void InitTokenArray(void);
 | |
| extern void StoreToken(void);
 | |
| extern unsigned int TextLength(void);	/* also first free token position */
 | |
| extern TOKEN *TokenArray;
 | |
| 
 | 
