1 /*
2  *
3  * var.c -
4  *
5  * $Id: var.c,v 1.21.4.3 2007-12-05 16:50:47 opengl2772 Exp $
6  *
7  * Copyright (C) 1997-1999 Satoru Takabayashi All rights reserved.
8  * Copyright (C) 2000,2002,2007 Namazu Project All rights reserved.
9  * This is free software with ABSOLUTELY NO WARRANTY.
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
24  * 02111-1307, USA
25  *
26  *
27  */
28 
29 #ifdef HAVE_CONFIG_H
30 #  include "config.h"
31 #endif
32 
33 #include <stdio.h>
34 #include "libnamazu.h"
35 #include "re.h"
36 
37 struct nmz_files Nmz;     /* NMZ.* files' file pointers */
38 struct nmz_names NMZ = {  /* NMZ.* files' names */
39     "NMZ.i",
40     "NMZ.ii",
41     "NMZ.head",
42     "NMZ.foot",
43     "NMZ.body",
44     "NMZ.lock",
45     "NMZ.result",
46     "NMZ.slog",
47     "NMZ.w",
48     "NMZ.wi",
49     "NMZ.field.",
50     "NMZ.t",
51     "NMZ.p",
52     "NMZ.pi",
53     "NMZ.tips",
54     "NMZ.access",
55     "NMZ.version",
56     "NMZ.warnlog"
57 };
58 
59