10 lines
217 B
C
10 lines
217 B
C
|
#ifndef COMPILER_STATEMENTS_H
|
||
|
#define COMPILER_STATEMENTS_H
|
||
|
#include "compiler.h"
|
||
|
|
||
|
/* compiler-statements
|
||
|
* Single function for compiling statements */
|
||
|
|
||
|
LINEBLOCK* compilestatements(SCOPE* s, STATEMENT* sts);
|
||
|
#endif
|