PyUnicode_DecodeUTF7Stateful method

Pointer<PyObject> PyUnicode_DecodeUTF7Stateful(
  1. Pointer<Char> string,
  2. int length,
  3. Pointer<Char> errors,
  4. Pointer<Py_ssize_t> consumed,
)

Implementation

ffi.Pointer<PyObject> PyUnicode_DecodeUTF7Stateful(
  ffi.Pointer<ffi.Char> string,
  int length,
  ffi.Pointer<ffi.Char> errors,
  ffi.Pointer<Py_ssize_t> consumed,
) {
  return _PyUnicode_DecodeUTF7Stateful(
    string,
    length,
    errors,
    consumed,
  );
}