Py_DecodeLocaleEx method Null safety

int Py_DecodeLocaleEx (
  1. Pointer<Int8> arg,
  2. Pointer<Pointer<Int32>> wstr,
  3. Pointer<Uint64> wlen,
  4. Pointer<Pointer<Int8>> reason,
  5. int current_locale,
  6. int errors
)

Implementation

int Py_DecodeLocaleEx(
  ffi.Pointer<ffi.Int8> arg,
  ffi.Pointer<ffi.Pointer<ffi.Int32>> wstr,
  ffi.Pointer<ffi.Uint64> wlen,
  ffi.Pointer<ffi.Pointer<ffi.Int8>> reason,
  int current_locale,
  int errors,
) {
  return _Py_DecodeLocaleEx(
    arg,
    wstr,
    wlen,
    reason,
    current_locale,
    errors,
  );
}