1 /*****************************************************************************
2 
3 NAME:
4    bogoconfig.h -- prototypes and definitions for bogoconfig.c.
5 
6 AUTHOR:
7    David Relson <relson@osagesoftware.com>
8 
9 ******************************************************************************/
10 
11 #ifndef BOGOCONFIG_H
12 #define BOGOCONFIG_H
13 
14 #include "configfile.h"
15 
16 /* Global variables */
17 
18 extern const char *logtag;
19 extern const char *user_config_file;
20 
21 extern rc_t query_config(void);
22 extern void process_parameters(int argc, char **argv, bool warn_on_error);
23 
24 extern int process_arg(int option, const char *name, const char *arg, priority_t precedence, arg_pass_t pass);
25 
26 #endif
27