1 Star 0 Fork 30

金凯/busybox

forked from JakeYang/busybox 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
xregex.h 678 Bytes
一键复制 编辑 原始数据 按行查看 历史
/* vi: set sw=4 ts=4: */
/*
* Busybox xregcomp utility routine. This isn't in libbb.h because the
* C library we're linking against may not support regex.h.
*
* Based in part on code from sash, Copyright (c) 1999 by David I. Bell
* Permission has been granted to redistribute this code under GPL.
*
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
*/
#ifndef BB_REGEX_H
#define BB_REGEX_H 1
#include <regex.h>
PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
char* regcomp_or_errmsg(regex_t *preg, const char *regex, int cflags) FAST_FUNC;
void xregcomp(regex_t *preg, const char *regex, int cflags) FAST_FUNC;
POP_SAVED_FUNCTION_VISIBILITY
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/jinkai719/busybox.git
[email protected]:jinkai719/busybox.git
jinkai719
busybox
busybox
master

搜索帮助