add native functions of subprocess

This commit is contained in:
ValKmjolnir
2024-06-10 00:30:30 +08:00
parent b96f93872d
commit a5dc725010
5 changed files with 146 additions and 33 deletions
+4 -1
View File
@@ -6,8 +6,11 @@
namespace nasal {
var builtin_subprocess_run(context*, gc*);
void subprocess_destructor(void*);
var builtin_subprocess_popen(context*, gc*);
var builtin_subprocess_pclose(context*, gc*);
var builtin_subprocess_read_stdout(context*, gc*);
extern nasal_builtin_table subprocess_native[];
}