symlinkat method

int symlinkat(
  1. Pointer<Char> __from,
  2. int __tofd,
  3. Pointer<Char> __to
)

Implementation

int symlinkat(
  ffi.Pointer<ffi.Char> __from,
  int __tofd,
  ffi.Pointer<ffi.Char> __to,
) {
  return _symlinkat(
    __from,
    __tofd,
    __to,
  );
}