1 /* getline.c -- Replacement for GNU C library function getline
3 Copyright (C) 1993, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19 /* Written by Jan Brittenson, bson@gnu.ai.mit.edu. */
25 /* The `getdelim' function is only declared if the following symbol
28 # define _GNU_SOURCE 1
32 #include <sys/types.h>
34 #if defined __GNU_LIBRARY__ && HAVE_GETDELIM
37 getline (char **lineptr
, size_t *n
, FILE *stream
)
39 return getdelim (lineptr
, n
, '\n', stream
);
42 #else /* ! have getdelim */
47 getline (char **lineptr
, size_t *n
, FILE *stream
)
49 return getstr (lineptr
, n
, stream
, '\n', 0, 0);
53 getdelim (char **lineptr
, size_t *n
, int delimiter
, FILE *stream
)
55 return getstr (lineptr
, n
, stream
, delimiter
, 0, 0);