PyObject_AsCharBuffer method

int PyObject_AsCharBuffer(
  1. Pointer<PyObject> obj,
  2. Pointer<Pointer<Char>> buffer,
  3. Pointer<Py_ssize_t> buffer_len
)

Implementation

int PyObject_AsCharBuffer(
  ffi.Pointer<PyObject> obj,
  ffi.Pointer<ffi.Pointer<ffi.Char>> buffer,
  ffi.Pointer<Py_ssize_t> buffer_len,
) {
  return _PyObject_AsCharBuffer(
    obj,
    buffer,
    buffer_len,
  );
}