blob: 29977ddb33df58cfe2d0b07089d1f8fa2d4c6c6e [file] [log] [blame]
Patrick Georgi55189c92020-05-10 20:09:31 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauer6540ae52007-07-12 16:35:42 +00002
Uwe Hermann6e565942008-03-01 19:06:32 +00003#ifndef REG_EXPR_H
4#define REG_EXPR_H
Stefan Reinauer6540ae52007-07-12 16:35:42 +00005
6#include <regex.h>
7#include "common.h"
8
Patrick Georgibf649852011-01-28 07:40:08 +00009void compile_reg_expr(int cflags, const char *expr, regex_t *reg);
Stefan Reinauer6540ae52007-07-12 16:35:42 +000010
Stefan Reinauer90b96b62010-01-13 21:00:23 +000011#endif /* REG_EXPR_H */