diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-11-04 01:30:17 -0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-11-04 01:30:17 -0200 |
commit | bbe7e42e7ae5b5eb5d8f20fdf79c8a3e622746b8 (patch) | |
tree | ff53b56d31231f9f05fd3ff9f518f7f90f90bea0 /src/directives.h | |
parent | 43bb8973e683743e780895f99f46364c7d85457f (diff) | |
download | blogc-bbe7e42e7ae5b5eb5d8f20fdf79c8a3e622746b8.tar.gz blogc-bbe7e42e7ae5b5eb5d8f20fdf79c8a3e622746b8.tar.bz2 blogc-bbe7e42e7ae5b5eb5d8f20fdf79c8a3e622746b8.zip |
Revert "Revert "content-parser: added basic rst-like directives support""
This reverts commit 43bb8973e683743e780895f99f46364c7d85457f.
Diffstat (limited to 'src/directives.h')
-rw-r--r-- | src/directives.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/directives.h b/src/directives.h new file mode 100644 index 0000000..fa758e2 --- /dev/null +++ b/src/directives.h @@ -0,0 +1,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 */ |