strlcpy method

int strlcpy(
  1. Pointer<Int8> __dst,
  2. Pointer<Int8> __source,
  3. int __size
)

Implementation

int strlcpy(
  ffi.Pointer<ffi.Int8> __dst,
  ffi.Pointer<ffi.Int8> __source,
  int __size,
) {
  return _strlcpy(
    __dst,
    __source,
    __size,
  );
}