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