cleanups and more test cases

This commit is contained in:
cozis
2022-08-12 05:30:41 +02:00
parent f630830b3c
commit 18e936f0ad
145 changed files with 1445 additions and 234 deletions
+9
View File
@@ -0,0 +1,9 @@
#ifndef NOJA_H
#define NOJA_H
_Bool NOJA_runFile (const char *file);
_Bool NOJA_runString(const char *str);
_Bool NOJA_runAssemblyFile(const char *file);
_Bool NOJA_runAssemblyString(const char *str);
_Bool NOJA_dumpFileBytecode(const char *file);
_Bool NOJA_dumpStringBytecode(const char *str);
#endif /* NOJA_H */