Py_wgetcwd method Null safety

Pointer<Int32> Py_wgetcwd (
  1. Pointer<Int32> buf,
  2. int buflen
)

Implementation

ffi.Pointer<ffi.Int32> Py_wgetcwd(
  ffi.Pointer<ffi.Int32> buf,
  int buflen,
) {
  return _Py_wgetcwd(
    buf,
    buflen,
  );
}