Function
GLibstrrstr_len
Declaration
gchar*
g_strrstr_len (
const gchar* haystack,
gssize haystack_len,
const gchar* needle
)
Description
Searches the string haystack
for the last occurrence
of the string needle
, limiting the length of the search
to haystack_len
.
Parameters
haystack |
const gchar* |
A nul-terminated string. |
|
The data is owned by the caller of the function. | |
The value is a NUL terminated UTF-8 string. | |
haystack_len |
gssize |
The maximum length of |
|
needle |
const gchar* |
The nul-terminated string to search for. |
|
The data is owned by the caller of the function. | |
The value is a NUL terminated UTF-8 string. |