gmain: fix some silly code in a programmer-error case
[glib.git] / glib / gnulib / printf.c
blobb3392999f787ad90697ad72f786125718d1613e4
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, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 2003. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
27 #ifdef HAVE_CONFIG_H
28 # include <config.h>
29 #endif
30 #include <string.h>
31 #include <stdlib.h>
32 #include <stdio.h>
33 #include "g-gnulib.h"
34 #include "vasnprintf.h"
35 #include "printf.h"
37 int _g_gnulib_printf (char const *format, ...)
39 va_list args;
40 int retval;
42 va_start (args, format);
43 retval = _g_gnulib_vprintf (format, args);
44 va_end (args);
46 return retval;
49 int _g_gnulib_fprintf (FILE *file, char const *format, ...)
51 va_list args;
52 int retval;
54 va_start (args, format);
55 retval = _g_gnulib_vfprintf (file, format, args);
56 va_end (args);
58 return retval;
61 int _g_gnulib_sprintf (char *string, char const *format, ...)
63 va_list args;
64 int retval;
66 va_start (args, format);
67 retval = _g_gnulib_vsprintf (string, format, args);
68 va_end (args);
70 return retval;
73 int _g_gnulib_snprintf (char *string, size_t n, char const *format, ...)
75 va_list args;
76 int retval;
78 va_start (args, format);
79 retval = _g_gnulib_vsnprintf (string, n, format, args);
80 va_end (args);
82 return retval;
85 int _g_gnulib_vprintf (char const *format, va_list args)
87 return _g_gnulib_vfprintf (stdout, format, args);
90 int _g_gnulib_vfprintf (FILE *file, char const *format, va_list args)
92 char *result;
93 size_t length;
95 result = vasnprintf (NULL, &length, format, args);
96 if (result == NULL)
97 return -1;
99 fwrite (result, 1, length, file);
100 free (result);
102 return length;
105 int _g_gnulib_vsprintf (char *string, char const *format, va_list args)
107 char *result;
108 size_t length;
110 result = vasnprintf (NULL, &length, format, args);
111 if (result == NULL)
112 return -1;
114 memcpy (string, result, length + 1);
115 free (result);
117 return length;
120 int _g_gnulib_vsnprintf (char *string, size_t n, char const *format, va_list args)
122 char *result;
123 size_t length;
125 result = vasnprintf (NULL, &length, format, args);
126 if (result == NULL)
127 return -1;
129 if (n > 0)
131 memcpy (string, result, MIN(length + 1, n));
132 string[n - 1] = 0;
135 free (result);
137 return length;
140 int _g_gnulib_vasprintf (char **result, char const *format, va_list args)
142 size_t length;
144 *result = vasnprintf (NULL, &length, format, args);
145 if (*result == NULL)
146 return -1;
148 return length;