Change-Id: I2858fdf74e782f425d56653491cdebe83c185d19 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41208 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
		
			
				
	
	
		
			12 lines
		
	
	
		
			219 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			219 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* 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 */
 |