PyUnicode_DecodeRawUnicodeEscape method

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

Implementation

ffi.Pointer<PyObject> PyUnicode_DecodeRawUnicodeEscape(
  ffi.Pointer<ffi.Char> string,
  int length,
  ffi.Pointer<ffi.Char> errors,
) {
  return _PyUnicode_DecodeRawUnicodeEscape(
    string,
    length,
    errors,
  );
}