mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 06:57:59 +02:00
18 lines
568 B
C
18 lines
568 B
C
/* This file is part of the software similarity tester SIM.
|
|
Written by Dick Grune, Vrije Universiteit, Amsterdam.
|
|
$Id: language.h,v 1.1 1997/06/20 12:03:15 dick Exp $
|
|
*/
|
|
|
|
/* The abstract class Language contains the routines InitLanguage,
|
|
MayBeStartOfRun and CheckRun which describe in some sense the
|
|
language and which are required by compare.c.
|
|
|
|
These routines must be provided by all Xlang.l files.
|
|
*/
|
|
|
|
#include "token.h"
|
|
|
|
extern void InitLanguage(void);
|
|
extern int MayBeStartOfRun(TOKEN ch);
|
|
extern unsigned int CheckRun(const TOKEN *str, unsigned int size);
|