diff options
Diffstat (limited to 'src/directives.h')
-rw-r--r-- | src/directives.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/directives.h b/src/directives.h new file mode 100644 index 0000000..dd27f03 --- /dev/null +++ b/src/directives.h @@ -0,0 +1,36 @@ +/* + * 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" +#include "error.h" + +typedef struct { + const char *name; + const char *argument; + b_trie_t *params; + const char *eol; +} blogc_directive_ctx_t; + +typedef char* (*blogc_directive_func_t)(blogc_directive_ctx_t *ctx, + blogc_error_t **err); + +typedef struct { + const char *name; + blogc_directive_func_t callback; +} blogc_directive_t; + +char* blogc_directive_loader(blogc_directive_ctx_t *ctx, blogc_error_t **err); + + +// built-in directives (that are everything we support right now +char* blogc_directive_youtube(blogc_directive_ctx_t *ctx, blogc_error_t **err); + +#endif /* _DIRECTIVES_H */ |