home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / MAWK113.ZIP / mawk113 / regexp.h < prev    next >
C/C++ Source or Header  |  1991-12-04  |  666b  |  30 lines

  1.  
  2. /********************************************
  3. regexp.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: regexp.h,v $
  14.  * Revision 5.1  1991/12/05  07:59:30  brennan
  15.  * 1.1 pre-release
  16.  *
  17. */
  18.  
  19. #include <stdio.h>
  20.  
  21. PTR   PROTO( REcompile , (char *) ) ;
  22. int   PROTO( REtest, (char *, PTR) ) ;
  23. char *PROTO( REmatch, (char *, PTR, unsigned *) ) ;
  24. void  PROTO( REmprint, (PTR , FILE*) ) ;
  25.  
  26. extern  int  REerrno ;
  27. extern  char *REerrlist[] ;
  28.  
  29.  
  30.