strstr method

Pointer<Int8> strstr(
  1. Pointer<Int8> __haystack,
  2. Pointer<Int8> __needle
)

Implementation

ffi.Pointer<ffi.Int8> strstr(
  ffi.Pointer<ffi.Int8> __haystack,
  ffi.Pointer<ffi.Int8> __needle,
) {
  return _strstr(
    __haystack,
    __needle,
  );
}