blob: 29977ddb33df58cfe2d0b07089d1f8fa2d4c6c6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef REG_EXPR_H
#define REG_EXPR_H
#include <regex.h>
#include "common.h"
void compile_reg_expr(int cflags, const char *expr, regex_t *reg);
#endif /* REG_EXPR_H */
|