Py_DecodeLocale method Null safety

Pointer<Int32> Py_DecodeLocale (
  1. Pointer<Int8> arg,
  2. Pointer<Uint64> size
)

Implementation

ffi.Pointer<ffi.Int32> Py_DecodeLocale(
  ffi.Pointer<ffi.Int8> arg,
  ffi.Pointer<ffi.Uint64> size,
) {
  return _Py_DecodeLocale(
    arg,
    size,
  );
}