wcstok_s method

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

Implementation

ffi.Pointer<ffi.Uint16> wcstok_s(
  ffi.Pointer<ffi.Uint16> _String,
  ffi.Pointer<ffi.Uint16> _Delimiter,
  ffi.Pointer<ffi.Pointer<ffi.Uint16>> _Context,
) {
  return (_wcstok_s ??=
      _dylib.lookupFunction<_c_wcstok_s, _dart_wcstok_s>('wcstok_s'))(
    _String,
    _Delimiter,
    _Context,
  );
}