22 lines
336 B
C
22 lines
336 B
C
/*
|
|
* config.h
|
|
*/
|
|
|
|
#define SZ_STRINGS 200
|
|
|
|
typedef struct {
|
|
|
|
int valid;
|
|
|
|
char *input_device;
|
|
|
|
|
|
} Configuration;
|
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
int parse_config(char *fname, int flags);
|
|
int show_config(char *title);
|
|
|
|
/* ---------------------------------------------------------------- */
|