/* * config.h */ #define SZ_STRINGS 200 typedef struct { int valid; } Configuration; /* ---------------------------------------------------------------- */ int parse_config(char *fname, int flags); int show_config(char *title); /* ---------------------------------------------------------------- */