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