📄 regex.h
字号:
/* * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -