2020-05-10 20:09:31 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2008-03-01 20:06:32 +01:00
|
|
|
#ifndef REG_EXPR_H
|
|
|
|
#define REG_EXPR_H
|
2007-07-12 18:35:42 +02:00
|
|
|
|
|
|
|
#include <regex.h>
|
|
|
|
#include "common.h"
|
|
|
|
|
2011-01-28 08:40:08 +01:00
|
|
|
void compile_reg_expr(int cflags, const char *expr, regex_t *reg);
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
#endif /* REG_EXPR_H */
|