-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathregexp.h
38 lines (32 loc) · 962 Bytes
/
regexp.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/********************************************
regexp.h
copyright 2009-2010,2014, Thomas E. Dickey
copyright 2005, Aleksey Cheusov
copyright 1991,1993, 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.
********************************************/
/*
* $MawkId: regexp.h,v 1.13 2014/09/11 23:43:10 tom Exp $
* @Log: regexp.h,v @
* Revision 1.1.1.1 1993/07/03 18:58:19 mike
* move source to cvs
*
* Revision 5.1 1991/12/05 07:59:30 brennan
* 1.1 pre-release
*
*/
#ifndef MAWK_REPL_H
#define MAWK_REPL_H
#include <stdio.h>
#include "nstd.h"
PTR REcompile(char *, size_t);
void REdestroy(PTR);
int REtest(char *, size_t, PTR);
char *REmatch(char *, size_t, PTR, size_t *, int);
void REmprint(PTR, FILE *);
const char *REs_type(PTR);
const char *REerror(void);
#endif /* MAWK_REPL_H */