_io_open

func _io_open(path: RawPtr, flags: Int, mode: Int) 'io -> Int

Low-level open for raw pointers. path is expected to point to a NUL-terminated C string.

View Source
pub func _io_open(path: RawPtr, flags: Int, mode: Int) 'io -> Int {
	'io(request: .open(path, flags, mode))
}