hush/libbb/full_read.c

43 lines
775 B
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
/*
* Utility routines.
*
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
*
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/
#include <stdio.h>
#include <unistd.h>
#include "libbb.h"
/*
* Read all of the supplied buffer from a file.
* This does multiple reads as necessary.
* Returns the amount read, or -1 on an error.
* A short read is returned on an end of file.
*/
2003-03-19 09:13:01 +00:00
ssize_t bb_full_read(int fd, void *buf, size_t len)
{
2003-03-19 09:13:01 +00:00
ssize_t cc;
ssize_t total;
total = 0;
while (len > 0) {
2003-07-03 09:48:07 +00:00
cc = safe_read(fd, buf, len);
if (cc < 0)
2003-03-19 09:13:01 +00:00
return cc; /* read() returns -1 on failure. */
if (cc == 0)
break;
2003-03-19 09:13:01 +00:00
buf = ((char *)buf) + cc;
total += cc;
len -= cc;
}
return total;
}