wcstok_s method
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,
);
}