home *** CD-ROM | disk | FTP | other *** search
/ Acorn User 11 / AUCD11B.iso / LANGUAGES / WraithSet / AwkStuff / MawkSrc / h / regexp < prev    next >
Text File  |  1993-07-03  |  739b  |  33 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 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:30  brennan
  18.  * 1.1 pre-release
  19.  *
  20. */
  21.  
  22. #include <stdio.h>
  23.  
  24. PTR   PROTO( REcompile , (char *) ) ;
  25. int   PROTO( REtest, (char *, PTR) ) ;
  26. char *PROTO( REmatch, (char *, PTR, unsigned *) ) ;
  27. void  PROTO( REmprint, (PTR , FILE*) ) ;
  28.  
  29. extern  int  REerrno ;
  30. extern  char *REerrlist[] ;
  31.  
  32.  
  33.