home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / UNIX / ARCHIE / CLIENTS / XARCHIE2.TAR / regex.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-21  |  530 b   |  21 lines

  1. /*
  2.  * regex.h : External defs for Ozan Yigit's regex functions, for systems
  3.  *    that don't have them builtin. See regex.c for copyright and other
  4.  *    details.
  5.  *
  6.  * Note that this file can be included even if we're linking against the
  7.  * system routines, since the interface is (deliberately) identical.
  8.  *
  9.  * George Ferguson, ferguson@cs.rochester.edu, 11 Sep 1991.
  10.  */
  11.  
  12. #ifdef AUX
  13. extern char *regcmp();
  14. extern char *regex();
  15. #define re_comp regcmp
  16. #define re_exec regex
  17. #else
  18. extern char *re_comp();
  19. extern int re_exec();
  20. #endif
  21.