1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 2003 Matthias Clasen
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This 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 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 * Modified by the GLib Team and others 2003. See the AUTHORS
20 * file for a list of people on the GLib Team. See the ChangeLog
21 * files for a list of changes. These files are distributed with
22 * GLib at ftp://ftp.gtk.org/pub/gtk/.
32 #include "vasnprintf.h"
35 int _g_gnulib_printf (char const *format
, ...)
40 va_start (args
, format
);
41 retval
= _g_gnulib_vprintf (format
, args
);
47 int _g_gnulib_fprintf (FILE *file
, char const *format
, ...)
52 va_start (args
, format
);
53 retval
= _g_gnulib_vfprintf (file
, format
, args
);
59 int _g_gnulib_sprintf (char *string
, char const *format
, ...)
64 va_start (args
, format
);
65 retval
= _g_gnulib_vsprintf (string
, format
, args
);
71 int _g_gnulib_snprintf (char *string
, size_t n
, char const *format
, ...)
76 va_start (args
, format
);
77 retval
= _g_gnulib_vsnprintf (string
, n
, format
, args
);
83 int _g_gnulib_vprintf (char const *format
, va_list args
)
85 return _g_gnulib_vfprintf (stdout
, format
, args
);
88 int _g_gnulib_vfprintf (FILE *file
, char const *format
, va_list args
)
91 size_t length
, rlength
;
93 result
= vasnprintf (NULL
, &length
, format
, args
);
97 rlength
= fwrite (result
, 1, length
, file
);
103 int _g_gnulib_vsprintf (char *string
, char const *format
, va_list args
)
108 result
= vasnprintf (NULL
, &length
, format
, args
);
112 memcpy (string
, result
, length
+ 1);
118 int _g_gnulib_vsnprintf (char *string
, size_t n
, char const *format
, va_list args
)
123 result
= vasnprintf (NULL
, &length
, format
, args
);
129 memcpy (string
, result
, MIN(length
+ 1, n
));
138 int _g_gnulib_vasprintf (char **result
, char const *format
, va_list args
)
142 *result
= vasnprintf (NULL
, &length
, format
, args
);