wcstok method

Pointer<Uint16> wcstok(
  1. Pointer<Uint16> _String,
  2. Pointer<Uint16> _Delimiter,
  3. Pointer<Pointer<Uint16>> _Context
)

Implementation

ffi.Pointer<ffi.Uint16> wcstok(
  ffi.Pointer<ffi.Uint16> _String,
  ffi.Pointer<ffi.Uint16> _Delimiter,
  ffi.Pointer<ffi.Pointer<ffi.Uint16>> _Context,
) {
  return (_wcstok_1 ??=
      _dylib.lookupFunction<_c_wcstok, _dart_wcstok>('wcstok'))(
    _String,
    _Delimiter,
    _Context,
  );
}