blob: 87d8fe99d95edc4eb0223be20a3cdc84af6ec801 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
* blogc: A blog compiler.
* Copyright (C) 2016 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
*/
#ifndef _MAKE_SETTINGS_H
#define _MAKE_SETTINGS_H
#include <stddef.h>
#include "../common/error.h"
#include "../common/utils.h"
typedef struct {
char *root_dir;
bc_trie_t *env;
bc_trie_t *settings;
char **posts;
char **pages;
char **copy_files;
char **tags;
} bm_settings_t;
bm_settings_t* bm_settings_parse(const char *content, size_t content_len,
bc_error_t **err);
bm_settings_t* bm_settings_parse_file(const char *filename, bc_error_t **err);
void bm_settings_free(bm_settings_t *settings);
#endif /* _MAKE_SETTINGS_H */
|