/* * config.h Copyright 1999 Christopher M Sedore. All rights reserved. * * See the COPYING files that came with this package for full * copyright information. */ typedef struct _configitem { char *name; char *value; struct _configitem *next; } configItem; int read_config(char *file); char *GetConfigString(char *name); char *GetConfigInt(char *name, int *val);