mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 15:03:39 +02:00
Rename g_string_printfa(). to g_string_append_printf().
Mon Oct 1 15:59:46 2001 Owen Taylor <otaylor@redhat.com> * glib/tmpl/strings.sgml docs/glib-sections.txt: Rename g_string_printfa(). to g_string_append_printf().
This commit is contained in:
@@ -552,7 +552,6 @@ g_threads_got_initialized
|
||||
g_thread_functions_for_glib_use
|
||||
<SUBSECTION Private>
|
||||
g_thread_error_quark
|
||||
</SUBSECTION>
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
@@ -1489,7 +1488,7 @@ g_string_assign
|
||||
g_string_sprintf
|
||||
g_string_sprintfa
|
||||
g_string_printf
|
||||
g_string_printfa
|
||||
g_string_append_printf
|
||||
g_string_append
|
||||
g_string_append_c
|
||||
g_string_append_unichar
|
||||
|
@@ -82,7 +82,8 @@ you do not have to worry about having enough space to copy the string.
|
||||
Writes a formatted string into a #GString.
|
||||
This is similar to the standard <function>sprintf()</function> function,
|
||||
except that the #GString buffer automatically expands to contain the results.
|
||||
The previous contents of the #GString are destroyed.
|
||||
The previous contents of the #GString are destroyed. This
|
||||
function has been renamaed to g_string_printf().
|
||||
</para>
|
||||
|
||||
<!-- # Unused Parameters # -->
|
||||
@@ -96,7 +97,8 @@ documentation.
|
||||
<para>
|
||||
Appends a formatted string onto the end of a #GString.
|
||||
This function is is similar to g_string_sprintf() except that
|
||||
the text is appended to the #GString.
|
||||
the text is appended to the #GString. The function has been
|
||||
renamed to g_string_append_printf().
|
||||
</para>
|
||||
|
||||
<!-- # Unused Parameters # -->
|
||||
@@ -115,12 +117,12 @@ The previous contents of the #GString are destroyed.
|
||||
</para>
|
||||
|
||||
@string: a #GString.
|
||||
@format: the string format. See the <function>sprintf()</function>
|
||||
@format: the string format. See the <function>printf()</function>
|
||||
documentation.
|
||||
@Varargs: the parameters to insert into the format string.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_string_printfa ##### -->
|
||||
<!-- ##### FUNCTION g_string_append_printf ##### -->
|
||||
<para>
|
||||
Appends a formatted string onto the end of a #GString.
|
||||
This function is is similar to g_string_sprintf() except that
|
||||
@@ -128,7 +130,7 @@ the text is appended to the #GString.
|
||||
</para>
|
||||
|
||||
@string: a #GString.
|
||||
@format: the string format. See the <function>sprintf()</function>
|
||||
@format: the string format. See the <function>printf()</function>
|
||||
documentation.
|
||||
@Varargs: the parameters to insert into the format string.
|
||||
|
||||
@@ -304,6 +306,7 @@ If @free_segment is %TRUE it also frees the character data.
|
||||
|
||||
@string: a #GString.
|
||||
@free_segment: if %TRUE the actual character data is freed as well.
|
||||
@Returns:
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_string_up ##### -->
|
||||
|
Reference in New Issue
Block a user