PyUnicode_DecodeLocaleAndSize method

Pointer<PyObject> PyUnicode_DecodeLocaleAndSize(
  1. Pointer<Char> str,
  2. int len,
  3. Pointer<Char> errors
)

Implementation

ffi.Pointer<PyObject> PyUnicode_DecodeLocaleAndSize(
  ffi.Pointer<ffi.Char> str,
  int len,
  ffi.Pointer<ffi.Char> errors,
) {
  return _PyUnicode_DecodeLocaleAndSize(
    str,
    len,
    errors,
  );
}