mirror of
https://github.com/antoinevignau/source.git
synced 2025-01-07 22:32:55 +00:00
1 line
963 B
C
Executable File
1 line
963 B
C
Executable File
/***********************************************************************\
|
|
|
|
Filename: tsclib.c
|
|
|
|
\***********************************************************************/
|
|
|
|
#include <string.h>
|
|
#include "cschar.h"
|
|
#include "language.h"
|
|
#include "proxerr.h"
|
|
#include "tenviron.h"
|
|
|
|
/* These globals are used throughout SC. */
|
|
|
|
int Tsciswctl; /* The word lists to be used by isword() */
|
|
int Tscflags; /* The flags being checked */
|
|
int Tsclen; /* The length being checked */
|
|
int Tscindex; /* The position being checked */
|
|
char Tsclookup[LONGWORD+2]; /* The lookup form being checked */
|
|
char *Tsccurlist; /* The current word list */
|
|
int Tsccurblk; /* The current block number */
|
|
char Tscdecomp[3*MAXWORD]; /* The decompression buffer */
|
|
char Tscfdecomp[MAXFLAGS]; /* The flag decompression buffer */
|
|
int Tsctag; /* The tag for the current word */
|
|
char *Tscendptr; /* End of the decompressed data */
|