blob: 0e9baca909f151efb0663391b40788b863d2759d [file] [log] [blame]
Stefan Reinauer6540ae52007-07-12 16:35:42 +00001/*****************************************************************************\
2 * reg_expr.c
Stefan Reinauer6540ae52007-07-12 16:35:42 +00003 *****************************************************************************
4 * Copyright (C) 2002-2005 The Regents of the University of California.
5 * Produced at the Lawrence Livermore National Laboratory.
6 * Written by Dave Peterson <dsp@llnl.gov> <dave_peterson@pobox.com>.
7 * UCRL-CODE-2003-012
8 * All rights reserved.
9 *
Uwe Hermann6e565942008-03-01 19:06:32 +000010 * This file is part of nvramtool, a utility for reading/writing coreboot
Stefan Reinauerf527e702008-01-18 15:33:49 +000011 * parameters and displaying information from the coreboot table.
Uwe Hermann6e565942008-03-01 19:06:32 +000012 * For details, see http://coreboot.org/nvramtool.
Stefan Reinauer6540ae52007-07-12 16:35:42 +000013 *
14 * Please also read the file DISCLAIMER which is included in this software
15 * distribution.
16 *
17 * This program is free software; you can redistribute it and/or modify it
18 * under the terms of the GNU General Public License (as published by the
19 * Free Software Foundation) version 2, dated June 1991.
20 *
21 * This program is distributed in the hope that it will be useful, but
22 * WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
24 * conditions of the GNU General Public License for more details.
Stefan Reinauer6540ae52007-07-12 16:35:42 +000025\*****************************************************************************/
26
27#include <stdarg.h>
28#include "common.h"
29#include "reg_expr.h"
30
31/****************************************************************************
Patrick Georgibf649852011-01-28 07:40:08 +000032 * compile_reg_expr
Stefan Reinauer6540ae52007-07-12 16:35:42 +000033 *
Patrick Georgibf649852011-01-28 07:40:08 +000034 * Compile a regular expression.
Stefan Reinauer6540ae52007-07-12 16:35:42 +000035 ****************************************************************************/
Patrick Georgibf649852011-01-28 07:40:08 +000036void compile_reg_expr(int cflags, const char *expr, regex_t *reg)
Stefan Reinauer90b96b62010-01-13 21:00:23 +000037{
38 static const size_t ERROR_BUF_SIZE = 256;
39 char error_msg[ERROR_BUF_SIZE];
Patrick Georgibf649852011-01-28 07:40:08 +000040 int result;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000041
Patrick Georgibf649852011-01-28 07:40:08 +000042 if ((result = regcomp(reg, expr, cflags)) != 0) {
43 regerror(result, reg, error_msg, ERROR_BUF_SIZE);
44 fprintf(stderr, "%s: %s\n", prog_name, error_msg);
45 exit(1);
Stefan Reinauer90b96b62010-01-13 21:00:23 +000046 }
Stefan Reinauer90b96b62010-01-13 21:00:23 +000047}