Next: lseek, Previous: read, Up: List of Supported Calls [Contents][Index]
int write(int fd, const void *buf, unsigned int count);
‘Fwrite,fd,bufptr,count’
On success, the number of bytes written are returned. Zero indicates nothing was written. On error, -1 is returned.
EBADFfd is not a valid file descriptor or is not open for writing.
EFAULTbufptr is an invalid pointer value.
EFBIGAn attempt was made to write a file that exceeds the host-specific maximum file size allowed.
ENOSPCNo space on device to write the data.
EINTRThe call was interrupted by the user.