/database/configuration.h
/* Blerg is (C) 2011 The Dominion of Awesome, and is distributed under a
 * BSD-style license.  Please see the COPYING file for details.
 */
#ifndef _CONFIGURATION_H
#define _CONFIGURATION_H

#include <stdio.h>

struct blerg_configuration {
	char base_path[FILENAME_MAX];
	char data_path[FILENAME_MAX];
	char hash_tags_path[FILENAME_MAX];
	char ref_tags_path[FILENAME_MAX];
};

int blerg_configuration_init();

extern struct blerg_configuration blergconf;

#endif //_CONFIGURATION_H