strncpy method

Pointer<Int8> strncpy(
  1. Pointer<Int8> __dst,
  2. Pointer<Int8> __src,
  3. int __n
)
inherited

Implementation

ffi.Pointer<ffi.Int8> strncpy(
  ffi.Pointer<ffi.Int8> __dst,
  ffi.Pointer<ffi.Int8> __src,
  int __n,
) {
  return _strncpy(
    __dst,
    __src,
    __n,
  );
}