regex.h

来自「socket5 代理服务代码 socket5 代理服务代码」· C头文件 代码 · 共 27 行

H
27
字号
/* * 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_COMPextern char *regcmp();extern char *regex();#define re_comp regcmp#define re_exec regex#endif#elseextern char *re_comp P((const char *));extern int   re_exec P((const char *));#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?