diff options
Diffstat (limited to 'src/blogc/funcvars.h')
-rw-r--r-- | src/blogc/funcvars.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/blogc/funcvars.h b/src/blogc/funcvars.h new file mode 100644 index 0000000..d46266f --- /dev/null +++ b/src/blogc/funcvars.h @@ -0,0 +1,19 @@ +/* + * blogc: A blog compiler. + * Copyright (C) 2014-2019 Rafael G. Martins <rafael@rafaelmartins.eng.br> + * + * This program can be distributed under the terms of the BSD License. + * See the file LICENSE. + */ + +#ifndef ___FUNCVARS_H +#define ___FUNCVARS_H + +#include <stdbool.h> +#include "../common/utils.h" + +typedef char* (*blogc_funcvars_func_t) (void); + +char* blogc_funcvars_lookup(const char *name, bc_trie_t *global); + +#endif /* ___FUNCVARS_H */ |