2020-05-10 20:09:31 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2007-07-12 18:35:42 +02:00
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "common.h"
|
|
|
|
#include "reg_expr.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
2011-01-28 08:40:08 +01:00
|
|
|
* compile_reg_expr
|
2007-07-12 18:35:42 +02:00
|
|
|
*
|
2011-01-28 08:40:08 +01:00
|
|
|
* Compile a regular expression.
|
2007-07-12 18:35:42 +02:00
|
|
|
****************************************************************************/
|
2011-01-28 08:40:08 +01:00
|
|
|
void compile_reg_expr(int cflags, const char *expr, regex_t *reg)
|
2010-01-13 22:00:23 +01:00
|
|
|
{
|
|
|
|
static const size_t ERROR_BUF_SIZE = 256;
|
|
|
|
char error_msg[ERROR_BUF_SIZE];
|
2011-01-28 08:40:08 +01:00
|
|
|
int result;
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2011-01-28 08:40:08 +01:00
|
|
|
if ((result = regcomp(reg, expr, cflags)) != 0) {
|
|
|
|
regerror(result, reg, error_msg, ERROR_BUF_SIZE);
|
|
|
|
fprintf(stderr, "%s: %s\n", prog_name, error_msg);
|
|
|
|
exit(1);
|
2010-01-13 22:00:23 +01:00
|
|
|
}
|
|
|
|
}
|