mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 11:56:16 +01:00
Merge branch 'improve-g_strrstr_len-docstring' into 'master'
Improve docstrings of 'g_strstr_len' and 'g_strrstr_len' Closes #2223 See merge request GNOME/glib!1697
This commit is contained in:
commit
5339082bbb
@ -2689,10 +2689,9 @@ g_strjoin (const gchar *separator,
|
||||
|
||||
/**
|
||||
* g_strstr_len:
|
||||
* @haystack: a string
|
||||
* @haystack_len: the maximum length of @haystack. Note that -1 is
|
||||
* a valid length, if @haystack is nul-terminated, meaning it will
|
||||
* search through the whole string.
|
||||
* @haystack: a nul-terminated string
|
||||
* @haystack_len: the maximum length of @haystack in bytes. A length of -1
|
||||
* can be used to mean "search the entire string", like `strstr()`.
|
||||
* @needle: the string to search for
|
||||
*
|
||||
* Searches the string @haystack for the first occurrence
|
||||
@ -2796,7 +2795,8 @@ g_strrstr (const gchar *haystack,
|
||||
/**
|
||||
* g_strrstr_len:
|
||||
* @haystack: a nul-terminated string
|
||||
* @haystack_len: the maximum length of @haystack
|
||||
* @haystack_len: the maximum length of @haystack in bytes. A length of -1
|
||||
* can be used to mean "search the entire string", like g_strrstr().
|
||||
* @needle: the nul-terminated string to search for
|
||||
*
|
||||
* Searches the string @haystack for the last occurrence
|
||||
|
Loading…
Reference in New Issue
Block a user