]> git.sur5r.net Git - i3/i3/blob - include/config.h
Put documentation for each function in the header files, doxygen-compatible
[i3/i3] / include / config.h
1 #ifndef _CONFIG_H
2 #define _CONFIG_H
3
4 typedef struct Config Config;
5 extern Config config;
6
7 struct Config {
8         const char *terminal;
9         const char *font;
10 };
11
12 /**
13  * Reads the configuration from ~/.i3/config or /etc/i3/config if not found.
14  *
15  * If you specify override_configpath, only this path is used to look for a
16  * configuration file.
17  *
18  */
19 void load_configuration(const char *override_configfile);
20
21 #endif