• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef REG_EXPR_H
4 #define REG_EXPR_H
5 
6 #include <regex.h>
7 #include "common.h"
8 
9 void compile_reg_expr(int cflags, const char *expr, regex_t *reg);
10 
11 #endif				/* REG_EXPR_H */
12