aboutsummaryrefslogtreecommitdiffstats
path: root/src/blogc/funcvars.h
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2019-09-02 23:38:48 +0200
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2019-09-02 23:51:15 +0200
commit4763814c683c50f8a3697b74e764f19c3dacccd5 (patch)
tree386ff43f024705a32310b882f2161b5f86d8820a /src/blogc/funcvars.h
parentc12bdb94ecdc44f200a8030dfde4a5ec46053ea6 (diff)
downloadblogc-4763814c683c50f8a3697b74e764f19c3dacccd5.tar.gz
blogc-4763814c683c50f8a3697b74e764f19c3dacccd5.tar.bz2
blogc-4763814c683c50f8a3697b74e764f19c3dacccd5.zip
migrate codebase to use squareball. again :)feature/squareball
Diffstat (limited to 'src/blogc/funcvars.h')
-rw-r--r--src/blogc/funcvars.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/blogc/funcvars.h b/src/blogc/funcvars.h
index aae1bc3..3768f81 100644
--- a/src/blogc/funcvars.h
+++ b/src/blogc/funcvars.h
@@ -10,10 +10,10 @@
#define ___FUNCVARS_H
#include <stdbool.h>
-#include "../common/utils.h"
+#include <squareball.h>
-typedef void (*blogc_funcvars_func_t) (bc_trie_t*);
+typedef void (*blogc_funcvars_func_t) (sb_trie_t*);
-void blogc_funcvars_eval(bc_trie_t *global, const char *name);
+void blogc_funcvars_eval(sb_trie_t *global, const char *name);
#endif /* ___FUNCVARS_H */