home *** CD-ROM | disk | FTP | other *** search
/ Acorn User 11 / AUCD11B.iso / LANGUAGES / WraithSet / AwkStuff / MawkSrc / h / repl < prev    next >
Text File  |  1993-07-03  |  844b  |  38 lines

  1.  
  2. /********************************************
  3. repl.h
  4. copyright 1991, Michael D. Brennan
  5.  
  6. This is a source file for mawk, an implementation of
  7. the AWK programming language.
  8.  
  9. Mawk is distributed without warranty under the terms of
  10. the GNU General Public License, version 2, 1991.
  11. ********************************************/
  12.  
  13. /*$Log: repl.h,v $
  14.  * Revision 1.1.1.1  1993/07/03  18:58:19  mike
  15.  * move source to cvs
  16.  *
  17.  * Revision 5.1  1991/12/05  07:59:32  brennan
  18.  * 1.1 pre-release
  19.  *
  20. */
  21.  
  22. /* repl.h */
  23.  
  24. #ifndef  REPL_H
  25. #define  REPL_H
  26.  
  27. PTR  PROTO( re_compile, (STRING *) ) ;
  28. char *PROTO( re_uncompile, (PTR) ) ;
  29.  
  30.  
  31. CELL *PROTO( repl_compile, (STRING *) ) ;
  32. char *PROTO( repl_uncompile, (CELL *) ) ;
  33. void  PROTO( repl_destroy, (CELL *) ) ;
  34. CELL *PROTO( replv_cpy, (CELL *, CELL *) ) ;
  35. CELL *PROTO( replv_to_repl, (CELL *, STRING *) ) ;
  36.  
  37. #endif
  38.