regex.h
资源名称:socks5.zip [点击查看]
上传用户:sddyfurun
上传日期:2007-01-04
资源大小:525k
文件大小:1k
源码类别:
代理服务器
开发平台:
Unix_Linux
- /*
- * regex.h : External defs for Ozan Yigit's regex functions, for systems
- * that don't have them builtin. See regex.c for copyright and other
- * details.
- *
- * Note that this file can be included even if we're linking against the
- * system routines, since the interface is (deliberately) identical.
- *
- * George Ferguson, ferguson@cs.rochester.edu, 11 Sep 1991.
- */
- #if defined(_AUX_SOURCE) || defined(USG)
- /* Let them use ours if they wish. */
- #ifndef HAVE_RE_COMP
- extern char *regcmp();
- extern char *regex();
- #define re_comp regcmp
- #define re_exec regex
- #endif
- #else
- extern char *re_comp P((const char *));
- extern int re_exec P((const char *));
- #endif