+2001-12-28 Sven Neumann <sven@gimp.org>
+
+ * glib/gmessages.c: only include printf_string_upper_bound() if
+ HAVE_C99_VSNPRINTF is not defined.
+
2001-12-27 Duarte Loreto <happyguy_pt@hotmail.com>
* configure.in: Added portuguese to ALL_LINGUAS
+2001-12-28 Sven Neumann <sven@gimp.org>
+
+ * glib/gmessages.c: only include printf_string_upper_bound() if
+ HAVE_C99_VSNPRINTF is not defined.
+
2001-12-27 Duarte Loreto <happyguy_pt@hotmail.com>
* configure.in: Added portuguese to ALL_LINGUAS
+2001-12-28 Sven Neumann <sven@gimp.org>
+
+ * glib/gmessages.c: only include printf_string_upper_bound() if
+ HAVE_C99_VSNPRINTF is not defined.
+
2001-12-27 Duarte Loreto <happyguy_pt@hotmail.com>
* configure.in: Added portuguese to ALL_LINGUAS
+2001-12-28 Sven Neumann <sven@gimp.org>
+
+ * glib/gmessages.c: only include printf_string_upper_bound() if
+ HAVE_C99_VSNPRINTF is not defined.
+
2001-12-27 Duarte Loreto <happyguy_pt@hotmail.com>
* configure.in: Added portuguese to ALL_LINGUAS
+2001-12-28 Sven Neumann <sven@gimp.org>
+
+ * glib/gmessages.c: only include printf_string_upper_bound() if
+ HAVE_C99_VSNPRINTF is not defined.
+
2001-12-27 Duarte Loreto <happyguy_pt@hotmail.com>
* configure.in: Added portuguese to ALL_LINGUAS
+2001-12-28 Sven Neumann <sven@gimp.org>
+
+ * glib/gmessages.c: only include printf_string_upper_bound() if
+ HAVE_C99_VSNPRINTF is not defined.
+
2001-12-27 Duarte Loreto <happyguy_pt@hotmail.com>
* configure.in: Added portuguese to ALL_LINGUAS
+2001-12-28 Sven Neumann <sven@gimp.org>
+
+ * glib/gmessages.c: only include printf_string_upper_bound() if
+ HAVE_C99_VSNPRINTF is not defined.
+
2001-12-27 Duarte Loreto <happyguy_pt@hotmail.com>
* configure.in: Added portuguese to ALL_LINGUAS
+2001-12-28 Sven Neumann <sven@gimp.org>
+
+ * glib/gmessages.c: only include printf_string_upper_bound() if
+ HAVE_C99_VSNPRINTF is not defined.
+
2001-12-27 Duarte Loreto <happyguy_pt@hotmail.com>
* configure.in: Added portuguese to ALL_LINGUAS
/* --- prototypes --- */
+#ifndef HAVE_C99_VSNPRINTF
static gsize printf_string_upper_bound (const gchar *format,
gboolean may_warn,
va_list args);
+#endif /* !HAVE_C99_VSNPRINTF */
/* --- variables --- */
# define MB_LEN_MAX 8
#endif
+#ifndef HAVE_C99_VSNPRINTF
+
typedef struct
{
guint min_width;
return len;
}
+#endif /* !HAVE_C99_VSNPRINTF */
+
+
gsize
g_printf_string_upper_bound (const gchar *format,
va_list args)