Add configuration system
[blerg.git] / database / configuration.h
1 /* Blerg is (C) 2011 The Dominion of Awesome, and is distributed under a
2  * BSD-style license.  Please see the COPYING file for details.
3  */
4 #ifndef _CONFIGURATION_H
5 #define _CONFIGURATION_H
6
7 #include <stdio.h>
8
9 struct blerg_configuration {
10         char base_path[FILENAME_MAX];
11 };
12
13 int blerg_configuration_init();
14
15 extern struct blerg_configuration blergconf;
16
17 #endif //_CONFIGURATION_H