blob: 5ff3b4d42d09c09ae48d2b4b31bac10af6f9360b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* 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.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /* HAVE_CONFIG_H */
#include "utils/utils.h"
#include "error.h"
char*
blogc_directive_loader(const char *name, const char *argument, b_trie_t *params,
blogc_error_t **err)
{
// TODO: implement me!
return b_strdup("TODO\n");
}
|