Input/output utilities.
int io_puts(String msg, int stream)Write a string to the given stream.
msg: String to write.stream: One of STDIN, STDOUT, STDERR.-1 on error.write syscall.int io_gets(String* msg, int stream, int count)Read up to count bytes from stream into msg.
msg: Pointer to an existing String with allocated space.stream: One of STDIN, STDOUT, STDERR.count: Maximum number of characters to read.-1 on error.msg->chars has capacity.