io_uring_prep_write

fnvoid io_uring_prep_write(io_uring_sqe * sqe, int fd, const void * buf, uint len, ulong offset, ulong user_data) pure @system

Prepare an SQE for a WRITE operation.

Parameters

sqePointer to the SQE to prepare.
fdFile descriptor to write to.
bufPointer to the buffer containing data to write.
lenNumber of bytes to write.
offsetFile offset to write at (use cast(ulong)-1 for current position).
user_dataUser data to be returned with the completion.