Update.
[glibc.git] / stdio / vasprintf.c
blob47a074e6ca21a62c2cf3a0fc2a7f580e7ed28112
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. */
19 #include <stddef.h>
20 #include <stdarg.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
27 /* Enlarge STREAM's buffer. */
28 static void
29 enlarge_buffer (stream, c)
30 FILE *stream;
31 int c;
33 ptrdiff_t bufp_offset = stream->__bufp - stream->__buffer;
34 char *newbuf;
36 stream->__bufsize += 100;
37 newbuf = (char *) realloc ((void *) stream->__buffer, stream->__bufsize);
38 if (newbuf == NULL)
40 free ((void *) stream->__buffer);
41 stream->__buffer = stream->__bufp
42 = stream->__put_limit = stream->__get_limit = NULL;
43 stream->__error = 1;
45 else
47 stream->__buffer = newbuf;
48 stream->__bufp = stream->__buffer + bufp_offset;
49 stream->__get_limit = stream->__put_limit;
50 stream->__put_limit = stream->__buffer + stream->__bufsize;
51 if (c != EOF)
52 *stream->__bufp++ = (unsigned char) c;
56 /* Write formatted output from FORMAT to a string which is
57 allocated with malloc and stored in *STRING_PTR. */
58 int
59 vasprintf (char **string_ptr,
60 const char *format,
61 va_list args)
63 FILE f;
64 int done;
66 memset ((void *) &f, 0, sizeof (f));
67 f.__magic = _IOMAGIC;
68 f.__bufsize = 100;
69 f.__buffer = (char *) malloc (f.__bufsize);
70 if (f.__buffer == NULL)
71 return -1;
72 f.__bufp = f.__buffer;
73 f.__put_limit = f.__buffer + f.__bufsize;
74 f.__mode.__write = 1;
75 f.__room_funcs.__output = enlarge_buffer;
76 f.__seen = 1;
78 done = vfprintf (&f, format, args);
79 if (done < 0)
80 return done;
82 *string_ptr = realloc (f.__buffer, (f.__bufp - f.__buffer) + 1);
83 if (*string_ptr == NULL)
84 *string_ptr = f.__buffer;
85 (*string_ptr)[f.__bufp - f.__buffer] = '\0';
86 return done;