Implement configuration file parsing
This commit is contained in:
14
include/config.h
Normal file
14
include/config.h
Normal file
@ -0,0 +1,14 @@
|
||||
#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 *configfile);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user