PyUnicode_DecodeCharmap method

Pointer<PyObject> PyUnicode_DecodeCharmap(
  1. Pointer<Char> string,
  2. int length,
  3. Pointer<PyObject> mapping,
  4. Pointer<Char> errors,
)

Implementation

ffi.Pointer<PyObject> PyUnicode_DecodeCharmap(
  ffi.Pointer<ffi.Char> string,
  int length,
  ffi.Pointer<PyObject> mapping,
  ffi.Pointer<ffi.Char> errors,
) {
  return _PyUnicode_DecodeCharmap(
    string,
    length,
    mapping,
    errors,
  );
}