strlcpy method

int strlcpy(
  1. Pointer<Char> dst,
  2. Pointer<Char> src,
  3. int n
)

Implementation

int strlcpy(
  ffi.Pointer<ffi.Char> dst,
  ffi.Pointer<ffi.Char> src,
  int n,
) {
  return _strlcpy(
    dst,
    src,
    n,
  );
}