Py_DecodeLocale method

Pointer<WChar> Py_DecodeLocale(
  1. Pointer<Char> arg,
  2. Pointer<Size> size
)

Implementation

ffi.Pointer<ffi.WChar> Py_DecodeLocale(
  ffi.Pointer<ffi.Char> arg,
  ffi.Pointer<ffi.Size> size,
) {
  return _Py_DecodeLocale(
    arg,
    size,
  );
}