PyMem_Malloc method

Pointer<Void> PyMem_Malloc(
  1. int size
)

Implementation

ffi.Pointer<ffi.Void> PyMem_Malloc(
  int size,
) {
  return _PyMem_Malloc(
    size,
  );
}