/* The function prototypes to use for the error handling versions of
 * the I/O functions
 */

int Writen(int fd, void *ptr, size_t nbytes);
ssize_t Readn(int fd, void *ptr, size_t nbytes);
ssize_t Readline(int fd, void *ptr, size_t maxlen);

