]> git.lizzy.rs Git - uwu-lang.git/blobdiff - src/run.h
Allow passing arguments to program, refactor directory structure
[uwu-lang.git] / src / run.h
diff --git a/src/run.h b/src/run.h
new file mode 100644 (file)
index 0000000..010dec0
--- /dev/null
+++ b/src/run.h
@@ -0,0 +1,8 @@
+#ifndef _RUN_H_
+#define _RUN_H_
+
+#include <stddef.h>
+
+void run_module(const char *progname, const char *modname, size_t num_args, char *args[]);
+
+#endif