+2005-10-01 Davyd Madeley <davyd@fugro-fsi.com.au>
+
+ * glib/tmpl/string_utils.sgml: Minor documentation improvements for
+ g_strchug, g_strchomp and g_strstrip. Brought forward from glib-2-8.
+
2005-08-31 Matthias Clasen <mclasen@redhat.com>
* glib/tmpl/quarks.sgml:
Removes leading whitespace from a string, by moving the rest of the
characters forward.
</para>
+<para>
+This function doesn't allocate or reallocate any memory; it modifies @string
+in place. The pointer to @string is returned to allow the nesting of functions.
+</para>
+<para>
+Also see g_strchomp() and g_strstrip().
+</para>
@string: a string to remove the leading whitespace from.
@Returns: @string.
<para>
Removes trailing whitespace from a string.
</para>
+<para>
+This function doesn't allocate or reallocate any memory; it modifies @string in
+place. The pointer to @string is returned to allow the nesting of functions.
+</para>
+<para>
+Also see g_strchug() and g_strstrip().
+</para>
@string: a string to remove the trailing whitespace from.
@Returns: @string.
<!-- ##### MACRO g_strstrip ##### -->
<para>
-Removes leading and trailing whitespace from a string.
+Removes leading and trailing whitespace from a string. See g_strchomp() and
+g_strchug().
</para>
@string: a string to remove the leading and trailing whitespace from.