aboutsummaryrefslogtreecommitdiff
path: root/interpreter/code.h
diff options
context:
space:
mode:
authorCamil Staps2016-10-07 20:51:56 +0200
committerCamil Staps2016-10-07 20:51:56 +0200
commit731442d43c8e18cbd94377054adba9ab79be09f2 (patch)
tree683949385de5ba630ca85ac12f93512d4a5ae889 /interpreter/code.h
parentMakefile: add override to CFLAGS (diff)
Resolve #12, don't show code keyword in debug graph
Diffstat (limited to 'interpreter/code.h')
-rw-r--r--interpreter/code.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/interpreter/code.h b/interpreter/code.h
index 144a7c3..8b7d060 100644
--- a/interpreter/code.h
+++ b/interpreter/code.h
@@ -10,4 +10,8 @@ typedef void (Code_2) (struct node**, struct node*, struct node*);
unsigned char code_find(char* name, void** function);
+#ifdef _FUSPEL_DEBUG
+char *code_find_name(void* f);
+#endif
+
#endif