diff options
Diffstat (limited to 'src/blogc-git-receiver/settings.h')
-rw-r--r-- | src/blogc-git-receiver/settings.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/blogc-git-receiver/settings.h b/src/blogc-git-receiver/settings.h new file mode 100644 index 0000000..1b89d0f --- /dev/null +++ b/src/blogc-git-receiver/settings.h @@ -0,0 +1,18 @@ +/* + * blogc: A blog compiler. + * Copyright (C) 2014-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br> + * + * This program can be distributed under the terms of the BSD License. + * See the file LICENSE. + */ + +#ifndef _SETTINGS_H +#define _SETTINGS_H + +#include "../common/config-parser.h" + +const char* bgr_settings_get_basedir(void); +char* bgr_settings_get_section(bc_config_t *config, const char *repo_path); +bc_config_t* bgr_settings_parse(void); + +#endif /* _SETTINGS_H */ |