2005-09-14 16:59:11 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2006-08-03 17:58:17 +00:00
|
|
|
* 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 16:59:11 +00:00
|
|
|
*
|
|
|
|
* 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 16:28:10 +00:00
|
|
|
*
|
2006-08-03 17:58:17 +00:00
|
|
|
* Licensed under GPLv2 or later, see file License in this tarball for details.
|
2005-09-14 16:59:11 +00:00
|
|
|
*/
|
2009-04-09 12:35:13 +00:00
|
|
|
#ifndef BB_REGEX_H
|
|
|
|
#define BB_REGEX_H 1
|
2005-09-14 16:59:11 +00:00
|
|
|
|
|
|
|
#include <regex.h>
|
2008-05-09 17:59:34 +00:00
|
|
|
|
2009-04-09 12:35:13 +00:00
|
|
|
PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
|
2008-05-09 17:59:34 +00:00
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
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 16:59:11 +00:00
|
|
|
|
2009-04-09 12:35:13 +00:00
|
|
|
POP_SAVED_FUNCTION_VISIBILITY
|
2008-05-09 17:59:34 +00:00
|
|
|
|
2005-09-14 16:59:11 +00:00
|
|
|
#endif
|