(main): Call setlocale, bindtextdomain, and textdomain.
[coreutils.git] / lib / linebuffer.c
blob7f53aed70bdf57ef169c63438d7e4174fff8b9c5
1 /* linebuffer.c -- read arbitrarily long lines
2 Copyright (C) 1986, 1991 Free Software Foundation, Inc.
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.
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.
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. */
18 /* Written by Richard Stallman. */
20 #include <stdio.h>
21 #include "linebuffer.h"
23 char *xmalloc ();
24 char *xrealloc ();
25 void free ();
27 /* Initialize linebuffer LINEBUFFER for use. */
29 void
30 initbuffer (linebuffer)
31 struct linebuffer *linebuffer;
33 linebuffer->length = 0;
34 linebuffer->size = 200;
35 linebuffer->buffer = (char *) xmalloc (linebuffer->size);
38 /* Read an arbitrarily long line of text from STREAM into LINEBUFFER.
39 Remove any newline. Does not null terminate.
40 Return LINEBUFFER, except at end of file return 0. */
42 struct linebuffer *
43 readline (linebuffer, stream)
44 struct linebuffer *linebuffer;
45 FILE *stream;
47 int c;
48 char *buffer = linebuffer->buffer;
49 char *p = linebuffer->buffer;
50 char *end = buffer + linebuffer->size; /* Sentinel. */
52 if (feof (stream))
54 linebuffer->length = 0;
55 return 0;
58 while (1)
60 c = getc (stream);
61 if (p == end)
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;
69 if (c == EOF || c == '\n')
70 break;
71 *p++ = c;
74 if (feof (stream) && p == buffer)
76 linebuffer->length = 0;
77 return 0;
79 linebuffer->length = p - linebuffer->buffer;
80 return linebuffer;
83 /* Free linebuffer LINEBUFFER and its data, all allocated with malloc. */
85 void
86 freebuffer (linebuffer)
87 struct linebuffer *linebuffer;
89 free (linebuffer->buffer);
90 free (linebuffer);