fix some wrong occurences of the FSF's address (trivial)
[coreboot.git] / util / nvramtool / reg_expr.c
1 /*****************************************************************************\
2  * reg_expr.c
3  *****************************************************************************
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  *
10  *  This file is part of nvramtool, a utility for reading/writing coreboot
11  *  parameters and displaying information from the coreboot table.
12  *  For details, see http://coreboot.org/nvramtool.
13  *
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.
25  *
26  *  You should have received a copy of the GNU General Public License along
27  *  with this program; if not, write to the Free Software Foundation, Inc.,
28  *  51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
29 \*****************************************************************************/
30
31 #include <stdarg.h>
32 #include "common.h"
33 #include "reg_expr.h"
34
35 /****************************************************************************
36  * compile_reg_exprs
37  *
38  * Compile a bunch of regular expressions.
39  ****************************************************************************/
40 void compile_reg_exprs (int cflags, int num_exprs,
41                         /* const char *expr1, regex_t *reg1, */ ...)
42  { static const size_t ERROR_BUF_SIZE = 256;
43    char error_msg[ERROR_BUF_SIZE];
44    va_list ap;
45    regex_t *reg;
46    const char *expr;
47    int i, result;
48
49    va_start(ap, num_exprs);
50
51    for (i = 0; i < num_exprs; i++)
52     { expr = va_arg(ap, const char *);
53       reg  = va_arg(ap, regex_t *);
54
55       if ((result = regcomp(reg, expr, cflags)) != 0)
56        { regerror(result, reg, error_msg, ERROR_BUF_SIZE);
57          fprintf(stderr, "%s: %s\n", prog_name, error_msg);
58          exit(1);
59        }
60     }
61
62    va_end(ap);
63  }
64
65 /****************************************************************************
66  * free_reg_exprs
67  *
68  * Destroy a bunch of previously compiled regular expressions.
69  ****************************************************************************/
70 void free_reg_exprs (int num_exprs, /* regex_t *reg1, */ ...)
71  { va_list ap;
72    int i;
73
74    va_start(ap, num_exprs);
75
76    for (i = 0; i < num_exprs; i++)
77       regfree(va_arg(ap, regex_t *));
78
79    va_end(ap);
80  }