PyBytes_DecodeEscape1 method

Pointer<PyObject> PyBytes_DecodeEscape1(
  1. Pointer<Char> arg0,
  2. int arg1,
  3. Pointer<Char> arg2,
  4. int arg3,
  5. Pointer<Char> arg4,
  6. Pointer<Pointer<Char>> arg5,
)

Implementation

ffi.Pointer<PyObject> PyBytes_DecodeEscape1(
  ffi.Pointer<ffi.Char> arg0,
  int arg1,
  ffi.Pointer<ffi.Char> arg2,
  int arg3,
  ffi.Pointer<ffi.Char> arg4,
  ffi.Pointer<ffi.Pointer<ffi.Char>> arg5,
) {
  return _PyBytes_DecodeEscape1(
    arg0,
    arg1,
    arg2,
    arg3,
    arg4,
    arg5,
  );
}