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