From a3e7de22a58bc1c7b0df7afc868e640ddbfd6a94 Mon Sep 17 00:00:00 2001 From: sbosse Date: Mon, 16 Mar 2026 11:11:20 +0100 Subject: [PATCH] Mon 16 Mar 11:09:06 CET 2026 --- src/io.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/io.h diff --git a/src/io.h b/src/io.h new file mode 100644 index 0000000..000eb1f --- /dev/null +++ b/src/io.h @@ -0,0 +1,8 @@ +#ifndef _IO_H +#define _IO_H + +void CompileInput(lexer_t *L,reg_t *R,mem_t *M,index_t ioh,char *ioc); +void CompileOutput(lexer_t *L,reg_t *R,mem_t *M,index_t ioh,char *ioc); +int RunIO(context_t *C,op_t * op); + +#endif