9 lines
216 B
C
9 lines
216 B
C
#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
|