summaryrefslogtreecommitdiff
path: root/lib/linebuffer.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-12-10 00:13:36 +0000
committerJim Meyering <jim@meyering.net>2001-12-10 00:13:36 +0000
commita988aefd0353d3d751e34425efcded6aeb8528e9 (patch)
tree7dbf87fce2d3d810eb3bb99f5cae759c8c9fc088 /lib/linebuffer.c
parenta49772f23b42c29f3b9cf380ad7e4ac9ef046850 (diff)
downloadcoreutils-a988aefd0353d3d751e34425efcded6aeb8528e9.tar.xz
Remove explicit declarations of xmalloc and xrealloc,
Instead, include "xalloc.h". (initbuffer): Don't cast xmalloc return value to char*. (readline): Reword comment. Don't cast xrealloc return value to char* Return NULL, not 0.
Diffstat (limited to 'lib/linebuffer.c')
-rw-r--r--lib/linebuffer.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/lib/linebuffer.c b/lib/linebuffer.c
index 5266dc118..8374a8a88 100644
--- a/lib/linebuffer.c
+++ b/lib/linebuffer.c
@@ -25,9 +25,8 @@
#include <sys/types.h>
#include "linebuffer.h"
#include "unlocked-io.h"
+#include "xalloc.h"
-char *xmalloc ();
-char *xrealloc ();
void free ();
/* Initialize linebuffer LINEBUFFER for use. */
@@ -37,14 +36,16 @@ initbuffer (struct linebuffer *linebuffer)
{
linebuffer->length = 0;
linebuffer->size = 200;
- linebuffer->buffer = (char *) xmalloc (linebuffer->size);
+ linebuffer->buffer = xmalloc (linebuffer->size);
}
/* Read an arbitrarily long line of text from STREAM into LINEBUFFER.
Keep the newline; append a newline if it's the last line of a file
that ends in a non-newline character. Do not null terminate.
- Return LINEBUFFER, except at end of file return 0. */
-
+ Therefore the stream can contain NUL bytes, and the length
+ (including the newline) is returned in linebuffer->length.
+ Return NULL upon error, or when STREAM is empty.
+ Otherwise, return LINEBUFFER. */
struct linebuffer *
readline (struct linebuffer *linebuffer, FILE *stream)
{
@@ -54,7 +55,7 @@ readline (struct linebuffer *linebuffer, FILE *stream)
char *end = buffer + linebuffer->size; /* Sentinel. */
if (feof (stream) || ferror (stream))
- return 0;
+ return NULL;
do
{
@@ -62,7 +63,7 @@ readline (struct linebuffer *linebuffer, FILE *stream)
if (c == EOF)
{
if (p == buffer)
- return 0;
+ return NULL;
if (p[-1] == '\n')
break;
c = '\n';
@@ -70,7 +71,7 @@ readline (struct linebuffer *linebuffer, FILE *stream)
if (p == end)
{
linebuffer->size *= 2;
- buffer = (char *) xrealloc (buffer, linebuffer->size);
+ buffer = xrealloc (buffer, linebuffer->size);
p = p - linebuffer->buffer + buffer;
linebuffer->buffer = buffer;
end = buffer + linebuffer->size;