comparison src/configfile.c @ 197:24d4cd032da5 noffle

[svn] * AUTHORS,INSTALL,NEWS,README,TODO,docs/NOTES,src/client.c,src/protocol.c, src/protocol.h,src/server.c: Merge with latest 1.0 branch. I do not intend to do any further merges from the 1.0 branch; future changes to 1.0 should be carried over by hand if necessary. * src/configfile.c,src/content.c,src/control.c,src/database.c, src/dynamicstring.c,src/fetch.c,src/filter.c,src/group.c, src/itemlist.c,src/lock.c,src/outgoing.c,src/over.c,src/post.c, src/pseudo.c,src/request.c,src/util.c: Minor includes rearrangement.
author bears
date Wed, 31 Oct 2001 11:44:53 +0000
parents 76460d98b2fb
children 21200ce10e68
comparison
equal deleted inserted replaced
196:60a70c16d79c 197:24d4cd032da5
4 The following macros must be set, when compiling this file: 4 The following macros must be set, when compiling this file:
5 CONFIGFILE 5 CONFIGFILE
6 SPOOLDIR 6 SPOOLDIR
7 VERSION 7 VERSION
8 8
9 $Id: configfile.c 314 2001-10-30 13:16:40Z bears $ 9 $Id: configfile.c 316 2001-10-31 11:44:53Z bears $
10 */ 10 */
11 11
12 #if HAVE_CONFIG_H 12 #if HAVE_CONFIG_H
13 #include <config.h> 13 #include <config.h>
14 #endif 14 #endif
15 15
16 #include "configfile.h"
17
18 #include <ctype.h> 16 #include <ctype.h>
19 #include <limits.h> 17 #include <limits.h>
20 #include <regex.h> 18 #include <regex.h>
19 #include "configfile.h"
21 #include "filter.h" 20 #include "filter.h"
22 #include "itemlist.h" 21 #include "itemlist.h"
23 #include "log.h" 22 #include "log.h"
24 #include "util.h" 23 #include "util.h"
25 #include "portable.h" 24 #include "portable.h"