Split CE code into multiple files
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m38s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m38s
This commit is contained in:
13
ce/interp.h
Normal file
13
ce/interp.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef _INTERP_H
|
||||
#define _INTERP_H
|
||||
|
||||
#include "context.h"
|
||||
#include "parser.h"
|
||||
|
||||
void execute (struct ast_node* root, struct context* context);
|
||||
|
||||
bool interp_is_running (void);
|
||||
|
||||
void interp_shutdown (void);
|
||||
|
||||
#endif // _INTERP_H
|
||||
Reference in New Issue
Block a user