diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2019-07-15 22:19:27 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2019-07-15 22:19:31 +0200 |
commit | 43a5963fb76f9e898182040a6670546f9eb301c2 (patch) | |
tree | 1eddd37f6eab1413c83d5b98b2fb0041918a4743 /src/blogc-make/exec.h | |
parent | 0f8f1f3cdc6256a11db1b60ebf0689acc0fbe922 (diff) | |
download | blogc-43a5963fb76f9e898182040a6670546f9eb301c2.tar.gz blogc-43a5963fb76f9e898182040a6670546f9eb301c2.tar.bz2 blogc-43a5963fb76f9e898182040a6670546f9eb301c2.zip |
make: rules: added pagination_tags
needs tests, but is supposed to work
Diffstat (limited to 'src/blogc-make/exec.h')
-rw-r--r-- | src/blogc-make/exec.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/blogc-make/exec.h b/src/blogc-make/exec.h index 140ef62..6bc206f 100644 --- a/src/blogc-make/exec.h +++ b/src/blogc-make/exec.h @@ -22,10 +22,13 @@ char* bm_exec_build_blogc_cmd(const char *blogc_bin, bm_settings_t *settings, bc_trie_t *global_variables, bc_trie_t *local_variables, const char *print, bool listing, const char *listing_entry, const char *template, const char *output, bool dev, bool sources_stdin); -int bm_exec_blogc(bm_ctx_t *ctx, bc_trie_t *global_variables, bc_trie_t *local_variables, - const char *print, bool listing, bm_filectx_t *listing_entry, +int bm_exec_blogc(bm_ctx_t *ctx, bc_trie_t *global_variables, + bc_trie_t *local_variables, bool listing, bm_filectx_t *listing_entry, bm_filectx_t *template, bm_filectx_t *output, bc_slist_t *sources, bool only_first_source); +char* bm_exec_blogc_get_variable(bm_ctx_t *ctx, bc_trie_t *global_variables, + bc_trie_t *local_variables, const char *variable, bool listing, + bc_slist_t *sources, bool only_first_source); int bm_exec_blogc_runserver(bm_ctx_t *ctx, const char *host, const char *port, const char *threads); |