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
|
|
|
*/
|
|
|
|
#ifndef __BB_REGEX__
|
|
|
|
#define __BB_REGEX__
|
|
|
|
|
|
|
|
#include <regex.h>
|
2008-05-09 23:29:34 +05:30
|
|
|
|
|
|
|
#if __GNUC_PREREQ(4,1)
|
|
|
|
# pragma GCC visibility push(hidden)
|
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
2008-05-09 23:29:34 +05:30
|
|
|
#if __GNUC_PREREQ(4,1)
|
|
|
|
# pragma GCC visibility pop
|
|
|
|
#endif
|
|
|
|
|
2005-09-14 22:29:11 +05:30
|
|
|
#endif
|