mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 07:26:15 +01:00
Add note about in-place editing to g_strdelimit() doc.
(#118875, Thomas Vander Stichele)
This commit is contained in:
parent
479928953b
commit
10d02e3aef
@ -1,3 +1,8 @@
|
||||
2003-08-05 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* glib/tmpl/string_utils.sgml: Add note about in-place editing to g_strdelimit() doc.
|
||||
(#118875, Thomas Vander Stichele)
|
||||
|
||||
2003-07-30 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* glib/tmpl/misc_utils.sgml: Move g_getenv() docs inline.
|
||||
|
@ -745,7 +745,9 @@ Removes leading and trailing whitespace from a string.
|
||||
<para>
|
||||
Converts any delimiter characters in @string to @new_delimiter.
|
||||
Any characters in @string which are found in @delimiters are changed
|
||||
to the @new_delimiter character.
|
||||
to the @new_delimiter character. Modifies @string in place, and returns
|
||||
@string itself, not a copy. The return value is to allow nesting such as
|
||||
<literal>g_ascii_strup (g_strdelimit (str, "abc", '?'))</literal>.
|
||||
</para>
|
||||
|
||||
@string: the string to convert.
|
||||
|
Loading…
Reference in New Issue
Block a user