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>
|
|
|
|
extern void xregcomp(regex_t *preg, const char *regex, int cflags);
|
|
|
|
|
|
|
|
#endif
|