Low Level IO
- Politechnika Śląska
- Fundamentals of Computer Programming
Low Level I/O - Read and Write int n_read = read(int fd, char *buf, int n); int n_written = write(int fd, char *buf, int n); Each call returns a count of the number of bytes transferred On reading, the number of bytes returned may be less than the number requested A return value of zero bytes...