strlcat method

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

Implementation

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