blob: fa758e237f3ebc9c11c5eca9c41b24017a2a9548 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* blogc: A blog compiler.
* Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
*/
#ifndef _DIRECTIVES_H
#define _DIRECTIVES_H
#include "utils/utils.h"
char* blogc_directive_loader(const char *name, const char *argument,
b_trie_t *params);
#endif /* _DIRECTIVES_H */
|