386BSD 0.1 development
[unix-history] / usr / src / usr.bin / awk / repl.h
CommitLineData
a7e60862
WJ
1
2/********************************************
3repl.h
4copyright 1991, Michael D. Brennan
5
6This is a source file for mawk, an implementation of
7the AWK programming language.
8
9Mawk is distributed without warranty under the terms of
10the GNU General Public License, version 2, 1991.
11********************************************/
12
13/*$Log: repl.h,v $
14 * Revision 5.1 91/12/05 07:59:32 brennan
15 * 1.1 pre-release
16 *
17*/
18
19/* repl.h */
20
21#ifndef REPL_H
22#define REPL_H
23
24PTR PROTO( re_compile, (STRING *) ) ;
25char *PROTO( re_uncompile, (PTR) ) ;
26
27
28CELL *PROTO( repl_compile, (STRING *) ) ;
29char *PROTO( repl_uncompile, (CELL *) ) ;
30void PROTO( repl_destroy, (CELL *) ) ;
31CELL *PROTO( replv_cpy, (CELL *, CELL *) ) ;
32CELL *PROTO( replv_to_repl, (CELL *, STRING *) ) ;
33
34#endif