util/nvramtool: Remove "this file is part of" lines
[coreboot.git] / util / nvramtool / reg_expr.h
blobc0dad76df0860620c314835350dc15c98e98735d
1 /*****************************************************************************\
2 * reg_expr.h
3 *****************************************************************************
4 * Please also read the file DISCLAIMER which is included in this software
5 * distribution.
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License (as published by the
9 * Free Software Foundation) version 2, dated June 1991.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
14 * conditions of the GNU General Public License for more details.
15 \*****************************************************************************/
17 #ifndef REG_EXPR_H
18 #define REG_EXPR_H
20 #include <regex.h>
21 #include "common.h"
23 void compile_reg_expr(int cflags, const char *expr, regex_t *reg);
25 #endif /* REG_EXPR_H */