2001-03-17 06:47:14 +08:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2004-03-15 16:29:22 +08:00
|
|
|
* Copyright (C) many different people.
|
2003-07-15 05:21:08 +08:00
|
|
|
* If you wrote this, please acknowledge your work.
|
2001-03-17 06:47:14 +08:00
|
|
|
*
|
2006-05-20 03:29:19 +08:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-03-17 06:47:14 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
2005-09-15 00:59:11 +08:00
|
|
|
#include "xregex.h"
|
2001-03-17 06:47:14 +08:00
|
|
|
|
2008-06-27 10:52:20 +08:00
|
|
|
char* FAST_FUNC regcomp_or_errmsg(regex_t *preg, const char *regex, int cflags)
|
2001-03-17 06:47:14 +08:00
|
|
|
{
|
2006-12-21 08:22:03 +08:00
|
|
|
int ret = regcomp(preg, regex, cflags);
|
|
|
|
if (ret) {
|
2001-03-17 06:47:14 +08:00
|
|
|
int errmsgsz = regerror(ret, preg, NULL, 0);
|
|
|
|
char *errmsg = xmalloc(errmsgsz);
|
|
|
|
regerror(ret, preg, errmsg, errmsgsz);
|
2006-12-21 21:24:58 +08:00
|
|
|
return errmsg;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-06-27 10:52:20 +08:00
|
|
|
void FAST_FUNC xregcomp(regex_t *preg, const char *regex, int cflags)
|
2006-12-21 21:24:58 +08:00
|
|
|
{
|
|
|
|
char *errmsg = regcomp_or_errmsg(preg, regex, cflags);
|
|
|
|
if (errmsg) {
|
2003-03-19 17:13:01 +08:00
|
|
|
bb_error_msg_and_die("xregcomp: %s", errmsg);
|
2001-03-17 06:47:14 +08:00
|
|
|
}
|
|
|
|
}
|