mirror of
https://github.com/antoinevignau/source.git
synced 2024-11-16 04:05:15 +00:00
1 line
621 B
C
Executable File
1 line
621 B
C
Executable File
/***********************************************************************\
|
|
|
|
Filename: clxdef.h
|
|
|
|
\***********************************************************************/
|
|
|
|
#ifndef _CLXDEF
|
|
#define _CLXDEF
|
|
|
|
/* This information is of use only to the Corelex routines. The implementor
|
|
should not have to diddle with any of this unless there is some new
|
|
functionality to be added to the Corelex. */
|
|
|
|
#ifndef _CORELEX
|
|
#include <corelex.h>
|
|
#endif
|
|
|
|
/* These variables are used to pass things between the lower level Corelex
|
|
routines. */
|
|
|
|
extern char *Clxsword; /* the search word. */
|
|
|
|
#endif /* _CLXDEF */
|