X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Flinebuffer.c;h=3b15d1fb3066511357a4fc83aaba085515b88f9b;hb=a655ee23a7d332ff458d3785df802f69acd6ea4f;hp=c1a696acc9067ad9919ae71322a463d6f5b206da;hpb=04e03d50238a919e565b95c17fcff84f2061d2e0;p=gnulib.git diff --git a/lib/linebuffer.c b/lib/linebuffer.c index c1a696acc..3b15d1fb3 100644 --- a/lib/linebuffer.c +++ b/lib/linebuffer.c @@ -1,5 +1,5 @@ /* linebuffer.c -- read arbitrarily long lines - Copyright (C) 1986, 1991, 1998 Free Software Foundation, Inc. + Copyright (C) 1986, 1991, 1998, 1999 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 @@ -22,6 +22,7 @@ #endif #include +#include #include "linebuffer.h" char *xmalloc (); @@ -39,9 +40,9 @@ initbuffer (struct linebuffer *linebuffer) } /* Read an arbitrarily long line of text from STREAM into LINEBUFFER. - Remove any newline. Does not null terminate. - Return zero upon error or upon end of file. - Otherwise, return 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. */ struct linebuffer * readline (struct linebuffer *linebuffer, FILE *stream) @@ -52,33 +53,32 @@ readline (struct linebuffer *linebuffer, FILE *stream) char *end = buffer + linebuffer->size; /* Sentinel. */ if (feof (stream) || ferror (stream)) - { - linebuffer->length = 0; - return 0; - } + return 0; - while (1) + do { c = getc (stream); + if (c == EOF) + { + if (p == buffer) + return 0; + if (p[-1] == '\n') + break; + c = '\n'; + } if (p == end) { linebuffer->size *= 2; buffer = (char *) xrealloc (buffer, linebuffer->size); - p += buffer - linebuffer->buffer; + p = p - linebuffer->buffer + buffer; linebuffer->buffer = buffer; end = buffer + linebuffer->size; } - if (c == EOF || c == '\n') - break; *p++ = c; } + while (c != '\n'); - if (feof (stream) && p == buffer) - { - linebuffer->length = 0; - return 0; - } - linebuffer->length = p - linebuffer->buffer; + linebuffer->length = p - buffer; return linebuffer; }