X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Flinebuffer.c;h=770ad62aa57a2b7963c8706180bd8d3b017502e8;hb=46e647a11e9d46474f478faade784c8fee57d148;hp=3b15d1fb3066511357a4fc83aaba085515b88f9b;hpb=320276634c2f2936296e2e5b6d131bbcc05647ff;p=gnulib.git diff --git a/lib/linebuffer.c b/lib/linebuffer.c index 3b15d1fb3..770ad62aa 100644 --- a/lib/linebuffer.c +++ b/lib/linebuffer.c @@ -1,5 +1,7 @@ /* linebuffer.c -- read arbitrarily long lines - Copyright (C) 1986, 1991, 1998, 1999 Free Software Foundation, Inc. + + Copyright (C) 1986, 1991, 1998, 1999, 2001, 2003 Free Software + Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -24,9 +26,9 @@ #include #include #include "linebuffer.h" +#include "unlocked-io.h" +#include "xalloc.h" -char *xmalloc (); -char *xrealloc (); void free (); /* Initialize linebuffer LINEBUFFER for use. */ @@ -36,16 +38,18 @@ 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) +readlinebuffer (struct linebuffer *linebuffer, FILE *stream) { int c; char *buffer = linebuffer->buffer; @@ -53,7 +57,7 @@ readline (struct linebuffer *linebuffer, FILE *stream) char *end = buffer + linebuffer->size; /* Sentinel. */ if (feof (stream) || ferror (stream)) - return 0; + return NULL; do { @@ -61,7 +65,7 @@ readline (struct linebuffer *linebuffer, FILE *stream) if (c == EOF) { if (p == buffer) - return 0; + return NULL; if (p[-1] == '\n') break; c = '\n'; @@ -69,7 +73,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;