getcwd method

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

Implementation

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