jack-compiler/compiler/compiler-statements.h

10 lines
230 B
C
Raw Normal View History

2020-12-31 18:02:04 -05:00
#ifndef COMPILER_STATEMENTS_H
#define COMPILER_STATEMENTS_H
#include "compiler.h"
/* compiler-statements
* Single function for compiling statements */
LINEBLOCK* compilestatements(COMPILER* c, SCOPE* s, STATEMENT* sts);
#endif