1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* getdelim.c --- Implementation of replacement getdelim function.
4 Copyright (C) 1994, 1996-1998, 2001, 2003, 2005-2011 Free Software
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 3, or (at
10 your option) any later version.
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22 /* Ported from glibc by Simon Josefsson. */
26 /* Don't use __attribute__ __nonnull__ in this compilation unit. Otherwise gcc
27 optimizes away the lineptr == NULL || n == NULL || fp == NULL tests below. */
28 #define _GL_ARG_NONNULL(params)
38 # define SSIZE_MAX ((ssize_t) (SIZE_MAX / 2))
42 # include "unlocked-io.h"
43 # define getc_maybe_unlocked(fp) getc(fp)
44 #elif !HAVE_FLOCKFILE || !HAVE_FUNLOCKFILE || !HAVE_DECL_GETC_UNLOCKED
47 # define flockfile(x) ((void) 0)
48 # define funlockfile(x) ((void) 0)
49 # define getc_maybe_unlocked(fp) getc(fp)
51 # define getc_maybe_unlocked(fp) getc_unlocked(fp)
54 /* Read up to (and including) a DELIMITER from FP into *LINEPTR (and
55 NUL-terminate it). *LINEPTR is a pointer returned from malloc (or
56 NULL), pointing to *N characters of space. It is realloc'ed as
57 necessary. Returns the number of characters read (not including
58 the null terminator), or -1 on error or EOF. */
61 getdelim (char **lineptr
, size_t *n
, int delimiter
, FILE *fp
)
66 if (lineptr
== NULL
|| n
== NULL
|| fp
== NULL
)
74 if (*lineptr
== NULL
|| *n
== 0)
78 new_lineptr
= (char *) realloc (*lineptr
, *n
);
79 if (new_lineptr
== NULL
)
84 *lineptr
= new_lineptr
;
91 i
= getc_maybe_unlocked (fp
);
98 /* Make enough space for len+1 (for final NUL) bytes. */
99 if (cur_len
+ 1 >= *n
)
102 SSIZE_MAX
< SIZE_MAX
? (size_t) SSIZE_MAX
+ 1 : SIZE_MAX
;
103 size_t needed
= 2 * *n
+ 1; /* Be generous. */
106 if (needed_max
< needed
)
108 if (cur_len
+ 1 >= needed
)
115 new_lineptr
= (char *) realloc (*lineptr
, needed
);
116 if (new_lineptr
== NULL
)
122 *lineptr
= new_lineptr
;
126 (*lineptr
)[cur_len
] = i
;
132 (*lineptr
)[cur_len
] = '\0';
133 result
= cur_len
? cur_len
: result
;
136 funlockfile (fp
); /* doesn't set errno */