getcwd method

Pointer<Int8> getcwd(
  1. Pointer<Int8> __buf,
  2. int __size
)

Implementation

ffi.Pointer<ffi.Int8> getcwd(
  ffi.Pointer<ffi.Int8> __buf,
  int __size,
) {
  return _getcwd(
    __buf,
    __size,
  );
}