1 /* Copyright (C) 1991, 1992, 1997 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
27 /* Enlarge STREAM's buffer. */
29 enlarge_buffer (FILE *stream
, int c
)
31 ptrdiff_t bufp_offset
= stream
->__bufp
- stream
->__buffer
;
34 stream
->__bufsize
+= 100;
35 newbuf
= (char *) realloc ((void *) stream
->__buffer
, stream
->__bufsize
);
38 free ((void *) stream
->__buffer
);
39 stream
->__buffer
= stream
->__bufp
40 = stream
->__put_limit
= stream
->__get_limit
= NULL
;
45 stream
->__buffer
= newbuf
;
46 stream
->__bufp
= stream
->__buffer
+ bufp_offset
;
47 stream
->__get_limit
= stream
->__put_limit
;
48 stream
->__put_limit
= stream
->__buffer
+ stream
->__bufsize
;
50 *stream
->__bufp
++ = (unsigned char) c
;
54 /* Write formatted output from FORMAT to a string which is
55 allocated with malloc and stored in *STRING_PTR. */
57 vasprintf (char **string_ptr
,
64 memset ((void *) &f
, 0, sizeof (f
));
67 f
.__buffer
= (char *) malloc (f
.__bufsize
);
68 if (f
.__buffer
== NULL
)
70 f
.__bufp
= f
.__buffer
;
71 f
.__put_limit
= f
.__buffer
+ f
.__bufsize
;
73 f
.__room_funcs
.__output
= enlarge_buffer
;
76 done
= vfprintf (&f
, format
, args
);
80 *string_ptr
= realloc (f
.__buffer
, (f
.__bufp
- f
.__buffer
) + 1);
81 if (*string_ptr
== NULL
)
82 *string_ptr
= f
.__buffer
;
83 (*string_ptr
)[f
.__bufp
- f
.__buffer
] = '\0';