summary refs log tree commit diff
path: root/include/instruction.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/instruction.h')
-rw-r--r--include/instruction.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/include/instruction.h b/include/instruction.h
deleted file mode 100644
index 63f28b2..0000000
--- a/include/instruction.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef __CCL_INSTRUCTION_H__
-#define __CCL_INSTRUCTION_H__
-
-#include "3cl.h"
-
-/**< Type for every instruction in 3cl */
-typedef struct CCLFrame *(*CCLInstruction)(struct CCL *ccl, struct CCLFrame *frame);
-
-/**
- * Execute next instruction
- * @param ccl CCL instance
- * @param frame Current frame
- * @return Updated frame
- */
-struct CCLFrame *ccl_instruction(struct CCL *ccl, struct CCLFrame *frame);
-
-#endif /* __CCL_INSTRUCTION_H__ */