Phasor 2.2.0
Stack VM based Programming Language
Loading...
Searching...
No Matches
IO.h
Go to the documentation of this file.
1#include <stdint.h>
2
3#ifdef __cplusplus
4extern "C"
5{
6#endif
8 void asm_print_stdout(const char *s, int64_t len);
10 void asm_print_stderr(const char *s, int64_t len);
12 int64_t asm_system(const char *cmd);
14 char *asm_system_out(const char *cmd);
16 char *asm_system_err(const char *cmd);
17#ifdef __cplusplus
18}
19#endif
char * asm_system_err(const char *cmd)
CRT system call, get err.
Definition IO.c:208
void asm_print_stdout(const char *s, int64_t len)
Native print function.
Definition IO.c:86
int64_t asm_system(const char *cmd)
CRT system call.
Definition IO.c:96
void asm_print_stderr(const char *s, int64_t len)
Native print error function.
Definition IO.c:91
char * asm_system_out(const char *cmd)
CRT system call, get out.
Definition IO.c:100