Split CE code into multiple files
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m38s

This commit is contained in:
2026-03-03 20:59:21 +01:00
parent aa32f2374f
commit 2a891fcdd1
16 changed files with 726 additions and 593 deletions

13
ce/interp.h Normal file
View 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