#ifndef LOADCONFIG_H
#define LOADCONFIG_H
#include <stdio.h>
#define TOKENS " \n"
#define VERSION "1.6"
enum {
BUFSIZE = 1024,
KEYSIZE = 64,
VALSIZE = 256
};
int wcnt;
int bcnt;
int pcnt;
char logtype[VALSIZE];
char logfile[VALSIZE];
char ignorefile[VALSIZE];
char badmailfile[VALSIZE];
char hostname[VALSIZE];
char sysadmin[VALSIZE];
char statfile[VALSIZE];
char mail_command[VALSIZE];
char makemap_command[VALSIZE];
void loadconfig(char *);
void readconfig(char *);
void removespaces(char *);
#endif
syntax highlighted by Code2HTML, v. 0.9.1