Codebase list libmawk / debian/1.0.0-1 src / libmawk / regexp.h
debian/1.0.0-1

Tree @debian/1.0.0-1 (Download .tar.gz)

regexp.h @debian/1.0.0-1raw · history · blame

/********************************************
regexp.h

libmawk changes (C) 2009-2010, Tibor 'Igor2' Palinkas;
based on mawk code coming with the below copyright:

copyright 1991, Michael D. Brennan

This is a source file for mawk, an implementation of
the AWK programming language.

Mawk is distributed without warranty under the terms of
the GNU General Public License, version 2, 1991.
********************************************/


PTR mawk_REcompile(mawk_state_t *MAWK, char *);
int mawk_REtest(mawk_state_t *MAWK, char *, PTR);
char *mawk_REmatch(mawk_state_t *MAWK, char *, PTR, unsigned *, int);
#ifdef DEBUG
#include <stdio.h>
void mawk_REmprint(PTR m, FILE *f);
#endif

extern const char *mawk_REerrlist[];