mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-10-07 06:00:06 +02:00
Remove g_snprintf() and g_vsnprintf(), since they are already declared in
2005-09-26 Matthias Clasen <mclasen@redhat.com> * glib/gprintf.h: Remove g_snprintf() and g_vsnprintf(), since they are already declared in glib.h. This doesn't break documented use of gprintf.h, but should probably be pointed out in the release notes for 2.10. (#314232, Behdad Esfahbod)
This commit is contained in:
committed by
Matthias Clasen
parent
85cb6bc485
commit
5b60a98d99
@@ -33,10 +33,6 @@ gint g_fprintf (FILE *file,
|
||||
gint g_sprintf (gchar *string,
|
||||
gchar const *format,
|
||||
...) G_GNUC_PRINTF (2, 3);
|
||||
gint g_snprintf (gchar *string,
|
||||
gulong n,
|
||||
gchar const *format,
|
||||
...) G_GNUC_PRINTF (3, 4);
|
||||
|
||||
gint g_vprintf (gchar const *format,
|
||||
va_list args);
|
||||
@@ -46,10 +42,6 @@ gint g_vfprintf (FILE *file,
|
||||
gint g_vsprintf (gchar *string,
|
||||
gchar const *format,
|
||||
va_list args);
|
||||
gint g_vsnprintf (gchar *string,
|
||||
gulong n,
|
||||
gchar const *format,
|
||||
va_list args);
|
||||
gint g_vasprintf (gchar **string,
|
||||
gchar const *format,
|
||||
va_list args);
|
||||
|
Reference in New Issue
Block a user