Function
GLibstrstr_len
Description
Searches the string haystack
for the first occurrence
of the string needle
, limiting the length of the search
to haystack_len
.
Parameters
haystack
-
Type:
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
-
Type:
gssize
The maximum length of
haystack
in bytes. A length of -1 can be used to mean “search the entire string”, likestrstr()
. needle
-
Type:
const gchar*
The string to search for.
The data is owned by the caller of the function. The value is a NUL terminated UTF-8 string.