Files
Nasal-Interpreter/src/natives/subprocess.h
T
2024-06-10 00:30:30 +08:00

16 lines
347 B
C++

#pragma once
#include "nasal.h"
#include "nasal_gc.h"
#include "natives/builtin.h"
namespace nasal {
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[];
}