diff options
author | Camil Staps | 2016-10-07 20:51:56 +0200 |
---|---|---|
committer | Camil Staps | 2016-10-07 20:51:56 +0200 |
commit | 731442d43c8e18cbd94377054adba9ab79be09f2 (patch) | |
tree | 683949385de5ba630ca85ac12f93512d4a5ae889 /interpreter/code.h | |
parent | Makefile: 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.h | 4 |
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 |