func _io_read(fd: Int, buf: RawPtr, count: Int) 'io -> IntReads up to count bytes from fd into buf; returns a count or negative errno.
View Source
pub func _io_read(fd: Int, buf: RawPtr, count: Int) 'io -> Int {
'io(request: .read(fd, buf, count))
}