translit
|
1251-alt.rus,
1251-k8.rus,
Makefile,
Makefile.os2,
Makefile.unx,
alt-1251.rus,
alt-gos.rus,
alt-koi8.rus,
announcement,
binaries_for_SunOS_5.4,
example.alt,
example.alt.uu,
example.ko8.uu,
example.pho,
example.tex,
gos-alt.rus,
gos-koi8.rus,
hex-text.rus,
k8-1251.rus,
k8-tavtt.rus,
koi7-8.rus,
koi7nl-8.rus,
koi8-7.rus,
koi8-alt.rus,
koi8-gos.rus,
koi8-lc.rus,
koi8-ltx.rus,
koi8-phg.rus,
koi8-php.rus,
koi8-tex.rus,
koi8-win.rus,
old-version-1.00,
old-version-1.01,
old-version-1.02,
paths.h,
phg-koi8.rus,
pho-8sim.rus,
pho-koi8.rus,
php-koi8.rus,
readme.doc,
reg_exp.c,
reg_exp.h,
reg_sub.c,
tex-koi8.rus,
translit-sun4,
translit.1,
translit.c,
translit.ps,
translit.tar.Z,
translit.txt,
translit.zip,
|
|
|
/*
* Definitions etc. for regexp(3) routines.
*
* Caveat: this is V8 regexp(3) [actually, a reimplementation thereof],
* not the System V one.
*/
#define NSUBEXP 10
typedef struct {
char *startp[NSUBEXP];
char *endp[NSUBEXP];
char regstart; /* Internal use only. */
char reganch; /* Internal use only. */
char *regmust; /* Internal use only. */
int regmlen; /* Internal use only. */
char program[1]; /* Unwarranted chumminess with compiler. */
} reg_exp;
extern reg_exp *reg_comp();
extern int reg_exec();
extern int reg_try();
extern void reg_sub();
extern void reg_error();
/*
* The first byte of the regexp internal "program" is actually this magic
* number; the start node begins in the second byte.
*/
#define MAGIC 0234
|