home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / futils / futils~1 / src / text11s.zoo / text1.1 / lib / linebuffer.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-11-02  |  2.1 KB  |  82 lines

  1. /* linebuffer.c -- read arbitrarily long lines
  2.    Copyright (C) 1986, 1991 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Written by Richard Stallman. */
  19.  
  20. #include <stdio.h>
  21. #include "linebuffer.h"
  22.  
  23. char *xmalloc ();
  24. char *xrealloc ();
  25.  
  26. /* Initialize linebuffer LINEBUFFER for use. */
  27.  
  28. void
  29. initbuffer (linebuffer)
  30.      struct linebuffer *linebuffer;
  31. {
  32.   linebuffer->length = 0;
  33.   linebuffer->size = 200;
  34.   linebuffer->buffer = (char *) xmalloc (200);
  35. }
  36.  
  37. /* Read a line of text from STREAM into LINEBUFFER.
  38.    Removes newlines.  Does not null terminate.
  39.    Return LINEBUFFER, except if there is no line to be read
  40.    because we are at end of file, return 0.  */
  41.  
  42. struct linebuffer *
  43. readline (linebuffer, stream)
  44.      struct linebuffer *linebuffer;
  45.      FILE *stream;
  46. {
  47.   int c;
  48.   char *buffer = linebuffer->buffer;
  49.   char *p = linebuffer->buffer;
  50.   char *end = buffer + linebuffer->size; /* Sentinel. */
  51.  
  52.   if (feof (stream))
  53.     {
  54.       linebuffer->length = 0;
  55.       return 0;
  56.     }
  57.  
  58.   while (1)
  59.     {
  60.       c = getc (stream);
  61.       if (p == end)
  62.     {
  63.       linebuffer->size *= 2;
  64.       buffer = (char *) xrealloc (buffer, linebuffer->size);
  65.       p += buffer - linebuffer->buffer;
  66.       linebuffer->buffer = buffer;
  67.       end = buffer + linebuffer->size;
  68.     }
  69.       if (c == EOF || c == '\n')
  70.     break;
  71.       *p++ = c;
  72.     }
  73.  
  74.   if (feof (stream) && p == buffer)
  75.     {
  76.       linebuffer->length = 0;
  77.       return 0;
  78.     }
  79.   linebuffer->length = p - linebuffer->buffer;
  80.   return linebuffer;
  81. }
  82.