strcpy_s method

int strcpy_s(
  1. Pointer<Int8> _Destination,
  2. int _SizeInBytes,
  3. Pointer<Int8> _Source
)

Implementation

int strcpy_s(
  ffi.Pointer<ffi.Int8> _Destination,
  int _SizeInBytes,
  ffi.Pointer<ffi.Int8> _Source,
) {
  return _strcpy_s(
    _Destination,
    _SizeInBytes,
    _Source,
  );
}