blob: 69fdbb667ce5c6a19e7545825ffcc23b35373581 (
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
|
/*
* blogc: A blog compiler.
* Copyright (C) 2014-2019 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 {
bc_trie_t *global;
bc_trie_t *settings;
char **posts;
char **pages;
char **copy;
char **tags;
} bm_settings_t;
bm_settings_t* bm_settings_parse(const char *content, size_t content_len,
bc_error_t **err);
void bm_settings_free(bm_settings_t *settings);
#endif /* _MAKE_SETTINGS_H */
|