2005-09-14 22:29:11 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2006-08-03 23:28:17 +05:30
|
|
|
* Busybox xregcomp utility routine. This isn't in libbb.h because the
|
|
|
|
* C library we're linking against may not support regex.h.
|
2005-09-14 22:29:11 +05:30
|
|
|
*
|
|
|
|
* Based in part on code from sash, Copyright (c) 1999 by David I. Bell
|
|
|
|
* Permission has been granted to redistribute this code under the GPL.
|
2006-09-17 21:58:10 +05:30
|
|
|
*
|
2006-08-03 23:28:17 +05:30
|
|
|
* Licensed under GPLv2 or later, see file License in this tarball for details.
|
2005-09-14 22:29:11 +05:30
|
|
|
*/
|
2009-04-09 18:05:13 +05:30
|
|
|
#ifndef BB_REGEX_H
|
|
|
|
#define BB_REGEX_H 1
|
2005-09-14 22:29:11 +05:30
|
|
|
|
|
|
|
#include <regex.h>
|
2008-05-09 23:29:34 +05:30
|
|
|
|
2009-04-09 18:05:13 +05:30
|
|
|
PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
|
2008-05-09 23:29:34 +05:30
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
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;
|
2005-09-14 22:29:11 +05:30
|
|
|
|
2009-04-09 18:05:13 +05:30
|
|
|
POP_SAVED_FUNCTION_VISIBILITY
|
2008-05-09 23:29:34 +05:30
|
|
|
|
2005-09-14 22:29:11 +05:30
|
|
|
#endif
|