2020-12-31 18:02:04 -05:00
|
|
|
#ifndef COMPILER_STRUCTURE_H
|
|
|
|
#define COMPILER_STRUCTURE_H
|
|
|
|
#include "compiler.h"
|
|
|
|
|
|
|
|
/* compiler-structure
|
|
|
|
* Module for dealing with and compiling general program structure. */
|
|
|
|
|
2021-01-03 14:08:54 -05:00
|
|
|
LINEBLOCK* compilesubroutdec(SCOPE* s, CLASS* cl, SUBROUTDEC* sd);
|
2020-12-31 18:02:04 -05:00
|
|
|
#endif
|