Cosmo/src/cparse.h

11 lines
203 B
C
Raw Permalink Normal View History

2020-10-28 05:16:30 +00:00
#ifndef CPARSE_H
#define CPARSE_H
#include "clex.h"
2023-02-09 18:32:48 +00:00
#include "cosmo.h"
2020-10-28 05:16:30 +00:00
// compiles source into CChunk
2023-02-09 18:32:48 +00:00
CObjFunction *cosmoP_compileString(CState *state, const char *source, const char *module);
2020-10-28 05:16:30 +00:00
2021-01-02 05:06:24 +00:00
#endif