15 lines
218 B
C
15 lines
218 B
C
#ifndef _CONFIG_H
|
|
#define _CONFIG_H
|
|
|
|
typedef struct Config Config;
|
|
extern Config config;
|
|
|
|
struct Config {
|
|
const char *terminal;
|
|
const char *font;
|
|
};
|
|
|
|
void load_configuration(const char *override_configfile);
|
|
|
|
#endif
|