home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / MAWK113.ZIP / mawk113 / repl.h < prev    next >
C/C++ Source or Header  |  1991-12-04  |  771b  |  35 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 5.1  1991/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.  
  24. PTR  PROTO( re_compile, (STRING *) ) ;
  25. char *PROTO( re_uncompile, (PTR) ) ;
  26.  
  27.  
  28. CELL *PROTO( repl_compile, (STRING *) ) ;
  29. char *PROTO( repl_uncompile, (CELL *) ) ;
  30. void  PROTO( repl_destroy, (CELL *) ) ;
  31. CELL *PROTO( replv_cpy, (CELL *, CELL *) ) ;
  32. CELL *PROTO( replv_to_repl, (CELL *, STRING *) ) ;
  33.  
  34. #endif
  35.