2006-08-26 20:24:29 +04:00
|
|
|
/* $NetBSD: fgetln.c,v 1.7 2006/08/26 16:24:29 christos Exp $ */
|
2002-01-04 17:39:06 +03:00
|
|
|
|
2005-05-16 01:31:26 +04:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
2002-01-04 17:39:06 +03:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2005-05-16 01:31:26 +04:00
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Christos Zoulas.
|
|
|
|
*
|
2002-01-04 17:39:06 +03:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2006-08-26 20:24:29 +04:00
|
|
|
* 3. Neither the name of The NetBSD Foundation nor the names of its
|
2005-05-16 01:31:26 +04:00
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
2002-01-04 17:39:06 +03:00
|
|
|
*
|
2005-05-16 01:31:26 +04:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
2002-01-04 17:39:06 +03:00
|
|
|
*/
|
|
|
|
|
2003-10-27 03:12:41 +03:00
|
|
|
#include "nbtool_config.h"
|
2002-01-04 17:39:06 +03:00
|
|
|
|
2002-01-31 22:23:14 +03:00
|
|
|
#if !HAVE_FGETLN
|
2002-01-21 23:04:36 +03:00
|
|
|
#include <stdlib.h>
|
2005-05-16 01:31:26 +04:00
|
|
|
#ifdef notdef
|
|
|
|
/* These headers are required, but included from nbtool_config.h */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
2002-01-04 17:39:06 +03:00
|
|
|
|
|
|
|
char *
|
|
|
|
fgetln(FILE *fp, size_t *len)
|
|
|
|
{
|
2005-05-16 01:31:26 +04:00
|
|
|
static char *buf = NULL;
|
|
|
|
static size_t bufsiz = 0;
|
|
|
|
char *ptr;
|
|
|
|
|
2002-01-04 17:39:06 +03:00
|
|
|
|
|
|
|
if (buf == NULL) {
|
2005-05-16 01:31:26 +04:00
|
|
|
bufsiz = BUFSIZ;
|
|
|
|
if ((buf = malloc(bufsiz)) == NULL)
|
|
|
|
return NULL;
|
2002-01-04 17:39:06 +03:00
|
|
|
}
|
|
|
|
|
2005-05-16 01:31:26 +04:00
|
|
|
if (fgets(buf, bufsiz, fp) == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
*len = 0;
|
|
|
|
while ((ptr = strchr(&buf[*len], '\n')) == NULL) {
|
|
|
|
size_t nbufsiz = bufsiz + BUFSIZ;
|
|
|
|
char *nbuf = realloc(buf, nbufsiz);
|
2002-01-04 17:39:06 +03:00
|
|
|
|
2005-05-16 01:31:26 +04:00
|
|
|
if (nbuf == NULL) {
|
|
|
|
int oerrno = errno;
|
|
|
|
free(buf);
|
|
|
|
errno = oerrno;
|
|
|
|
buf = NULL;
|
|
|
|
return NULL;
|
|
|
|
} else
|
|
|
|
buf = nbuf;
|
|
|
|
|
|
|
|
*len = bufsiz;
|
|
|
|
if (fgets(&buf[bufsiz], BUFSIZ, fp) == NULL)
|
|
|
|
return buf;
|
|
|
|
|
|
|
|
bufsiz = nbufsiz;
|
2002-01-04 17:39:06 +03:00
|
|
|
}
|
2005-05-16 01:31:26 +04:00
|
|
|
|
|
|
|
*len = (ptr - buf) + 1;
|
|
|
|
return buf;
|
2002-01-04 17:39:06 +03:00
|
|
|
}
|
2005-05-16 01:31:26 +04:00
|
|
|
|
2002-01-31 22:23:14 +03:00
|
|
|
#endif
|