pub const SYS_PWRITE: usize = 457;Expand description
Write to a file descriptor at a specific offset.
fd: file descriptorbuf_ptr: pointer to the data bufferbuf_len: number of bytes to writeoffset: byte offset in the file
Returns the number of bytes written. The file position is not changed.