#include#include
ssize_t read(int d, void *buf, size_t nbytes) ssize_t pread(int d, void *buf, size_t nbytes, off_t offset)
On objects capable of seeking, the read starts at a position given by the pointer associated with d (see lseek(2)). Upon return from read, the pointer is incremented by the number of bytes actually read.
Objects that are not capable of seeking always read from the current position. The value of the pointer associated with such an object is undefined.
Upon successful completion, read return the number of bytes actually read and placed in the buffer. The system guarantees to read the number of bytes requested if the descriptor references a normal file that has that many bytes left before the end-of-file, but in no other case.
If the returned value is 0, then end-of-file has been reached.
The pread system call performs the same functions, but reads from the specified position in the file without modifying the file pointer.
The pread system call may also return any of the lseek errors.