strchr method

Pointer<Int8> strchr(
  1. Pointer<Int8> _Str,
  2. int _Val
)

Implementation

ffi.Pointer<ffi.Int8> strchr(
  ffi.Pointer<ffi.Int8> _Str,
  int _Val,
) {
  return (_strchr ??=
      _dylib.lookupFunction<_c_strchr, _dart_strchr>('strchr'))(
    _Str,
    _Val,
  );
}