pub unsafe extern "C" fn furi_string_search(
    string: *const FuriString,
    needle: *const FuriString,
    start: usize
) -> usize
Expand description

Search the first occurrence of the needle in the string from the position start. Return STRING_FAILURE if not found. By default, start is zero.

Returns:

  • size_t

Arguments

  • string -
  • needle -
  • start -