xref: /dflybsd-src/contrib/cvs-1.12/lib/getline.c (revision 86d7f5d305c6adaa56ff4582ece9859d73106103)
186d7f5d3SJohn Marino /* getline.c --- Implementation of replacement getline function.
286d7f5d3SJohn Marino    Copyright (C) 2005 Free Software Foundation, Inc.
386d7f5d3SJohn Marino 
486d7f5d3SJohn Marino    This program is free software; you can redistribute it and/or
586d7f5d3SJohn Marino    modify it under the terms of the GNU General Public License as
686d7f5d3SJohn Marino    published by the Free Software Foundation; either version 2, or (at
786d7f5d3SJohn Marino    your option) any later version.
886d7f5d3SJohn Marino 
986d7f5d3SJohn Marino    This program is distributed in the hope that it will be useful, but
1086d7f5d3SJohn Marino    WITHOUT ANY WARRANTY; without even the implied warranty of
1186d7f5d3SJohn Marino    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1286d7f5d3SJohn Marino    General Public License for more details.
1386d7f5d3SJohn Marino 
1486d7f5d3SJohn Marino    You should have received a copy of the GNU General Public License
1586d7f5d3SJohn Marino    along with this program; if not, write to the Free Software
1686d7f5d3SJohn Marino    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
1786d7f5d3SJohn Marino    02110-1301, USA.  */
1886d7f5d3SJohn Marino 
1986d7f5d3SJohn Marino /* Written by Simon Josefsson. */
2086d7f5d3SJohn Marino 
2186d7f5d3SJohn Marino #ifdef HAVE_CONFIG_H
2286d7f5d3SJohn Marino # include <config.h>
2386d7f5d3SJohn Marino #endif
2486d7f5d3SJohn Marino 
2586d7f5d3SJohn Marino #include "getdelim.h"
2686d7f5d3SJohn Marino #include "getline.h"
2786d7f5d3SJohn Marino 
2886d7f5d3SJohn Marino ssize_t
getline(char ** lineptr,size_t * n,FILE * stream)2986d7f5d3SJohn Marino getline (char **lineptr, size_t *n, FILE *stream)
3086d7f5d3SJohn Marino {
3186d7f5d3SJohn Marino   return getdelim (lineptr, n, '\n', stream);
3286d7f5d3SJohn Marino }
33