20 lines
280 B
C
20 lines
280 B
C
|
|
#ifndef APFL_COMPILE_H
|
||
|
|
#define APFL_COMPILE_H
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include "apfl.h"
|
||
|
|
|
||
|
|
#include "bytecode.h"
|
||
|
|
#include "gc.h"
|
||
|
|
|
||
|
|
bool apfl_compile(struct gc *, struct apfl_expr, struct apfl_error *, struct instruction_list *);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|