diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-27 04:35:04 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-27 04:35:04 +0000 |
commit | 8d42f86b146871ae4c4cafd3801a85f381249a14 (patch) | |
tree | b963999fc54eddb65f1929b894f868e24851fc9c /libbb/xregcomp.c | |
download | busybox-w32-8d42f86b146871ae4c4cafd3801a85f381249a14.tar.gz busybox-w32-8d42f86b146871ae4c4cafd3801a85f381249a14.tar.bz2 busybox-w32-8d42f86b146871ae4c4cafd3801a85f381249a14.zip |
Correcting branch name to be like previous ones
Diffstat (limited to 'libbb/xregcomp.c')
-rw-r--r-- | libbb/xregcomp.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libbb/xregcomp.c b/libbb/xregcomp.c new file mode 100644 index 000000000..4bcb9aedf --- /dev/null +++ b/libbb/xregcomp.c | |||
@@ -0,0 +1,26 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | ||
2 | /* | ||
3 | * Utility routines. | ||
4 | * | ||
5 | * Copyright (C) many different people. | ||
6 | * If you wrote this, please acknowledge your work. | ||
7 | * | ||
8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | ||
9 | */ | ||
10 | |||
11 | #include <stdio.h> | ||
12 | #include "libbb.h" | ||
13 | #include "xregex.h" | ||
14 | |||
15 | |||
16 | |||
17 | void xregcomp(regex_t *preg, const char *regex, int cflags) | ||
18 | { | ||
19 | int ret; | ||
20 | if ((ret = regcomp(preg, regex, cflags)) != 0) { | ||
21 | int errmsgsz = regerror(ret, preg, NULL, 0); | ||
22 | char *errmsg = xmalloc(errmsgsz); | ||
23 | regerror(ret, preg, errmsg, errmsgsz); | ||
24 | bb_error_msg_and_die("xregcomp: %s", errmsg); | ||
25 | } | ||
26 | } | ||