2009-02-24 18:50:30 -05:00
|
|
|
#ifndef _CONFIG_H
|
|
|
|
#define _CONFIG_H
|
|
|
|
|
|
|
|
typedef struct Config Config;
|
|
|
|
extern Config config;
|
|
|
|
|
|
|
|
struct Config {
|
|
|
|
const char *terminal;
|
|
|
|
const char *font;
|
|
|
|
};
|
|
|
|
|
2009-03-04 03:16:18 -05:00
|
|
|
void load_configuration(const char *override_configfile);
|
2009-02-24 18:50:30 -05:00
|
|
|
|
|
|
|
#endif
|