X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Flinebuffer.c;h=c1a696acc9067ad9919ae71322a463d6f5b206da;hb=25a832363606f0a9f987f9242265a5e6e1259228;hp=7f53aed70bdf57ef169c63438d7e4174fff8b9c5;hpb=87e2683e04a8ef7d18ea8f515e65d8885e5a2355;p=gnulib.git diff --git a/lib/linebuffer.c b/lib/linebuffer.c index 7f53aed70..c1a696acc 100644 --- a/lib/linebuffer.c +++ b/lib/linebuffer.c @@ -1,5 +1,5 @@ /* linebuffer.c -- read arbitrarily long lines - Copyright (C) 1986, 1991 Free Software Foundation, Inc. + Copyright (C) 1986, 1991, 1998 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 @@ -12,11 +12,15 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Written by Richard Stallman. */ +#ifdef HAVE_CONFIG_H +# include +#endif + #include #include "linebuffer.h" @@ -27,8 +31,7 @@ void free (); /* Initialize linebuffer LINEBUFFER for use. */ void -initbuffer (linebuffer) - struct linebuffer *linebuffer; +initbuffer (struct linebuffer *linebuffer) { linebuffer->length = 0; linebuffer->size = 200; @@ -37,19 +40,18 @@ initbuffer (linebuffer) /* Read an arbitrarily long line of text from STREAM into LINEBUFFER. Remove any newline. Does not null terminate. - Return LINEBUFFER, except at end of file return 0. */ + Return zero upon error or upon end of file. + Otherwise, return LINEBUFFER. */ struct linebuffer * -readline (linebuffer, stream) - struct linebuffer *linebuffer; - FILE *stream; +readline (struct linebuffer *linebuffer, FILE *stream) { int c; char *buffer = linebuffer->buffer; char *p = linebuffer->buffer; char *end = buffer + linebuffer->size; /* Sentinel. */ - if (feof (stream)) + if (feof (stream) || ferror (stream)) { linebuffer->length = 0; return 0; @@ -83,8 +85,7 @@ readline (linebuffer, stream) /* Free linebuffer LINEBUFFER and its data, all allocated with malloc. */ void -freebuffer (linebuffer) - struct linebuffer *linebuffer; +freebuffer (struct linebuffer *linebuffer) { free (linebuffer->buffer); free (linebuffer);