mirror of
https://github.com/CPunch/Cosmo.git
synced 2024-11-05 08:10:05 +00:00
12 lines
286 B
C
12 lines
286 B
C
#ifndef CPARSE_H
|
|
#define CPARSE_H
|
|
|
|
#include "clex.h"
|
|
#include "cosmo.h"
|
|
|
|
// compiles source into CChunk, if NULL is returned, a syntaxical error has occurred and pushed onto
|
|
// the stack
|
|
CObjFunction *cosmoP_compileString(CState *state, const char *source, const char *module);
|
|
|
|
#endif
|