jackc/compiler/compiler-structure.h

10 lines
249 B
C

#ifndef COMPILER_STRUCTURE_H
#define COMPILER_STRUCTURE_H
#include "compiler.h"
/* compiler-structure
* Module for dealing with and compiling general program structure. */
LINEBLOCK* compilesubroutdec(SCOPE* s, CLASS* cl, SUBROUTDEC* sd);
#endif