about summary refs log tree commit diff
path: root/include/instruction.h
diff options
context:
space:
mode:
authorNakidai <nakidai@disroot.org>2025-03-23 21:11:13 +0300
committerNakidai <nakidai@disroot.org>2025-03-23 21:11:13 +0300
commitad9d6a199db7c28f8b20f131dfb55a26e0e251de (patch)
treee5bb112cd902d9c09f5ad79ce98ba8a315d20bbb /include/instruction.h
parent159666bae6cc185a5abac154b85c49406f32f30c (diff)
download3cl-ad9d6a199db7c28f8b20f131dfb55a26e0e251de.tar.gz
3cl-ad9d6a199db7c28f8b20f131dfb55a26e0e251de.zip
Again...
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__ */