/* * blogc: A blog compiler. * Copyright (C) 2015 Rafael G. Martins * * 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 char* (*blogc_directive_func_t)(const char *argument, b_trie_t *params, blogc_error_t **err); typedef struct { const char *name; blogc_directive_func_t callback; } blogc_directive_t; char* blogc_directive_loader(const char *name, const char *argument, b_trie_t *params, blogc_error_t **err); // built-in directives (that are everything we support right now char* blogc_directive_youtube(const char *argument, b_trie_t *params, blogc_error_t **err); #endif /* _DIRECTIVES_H */