open_memstream method

Pointer<IO_FILE_> open_memstream(
  1. Pointer<Pointer<Int8>> __bufloc,
  2. Pointer<Int32> __sizeloc
)

Implementation

ffi.Pointer<IO_FILE_> open_memstream(
  ffi.Pointer<ffi.Pointer<ffi.Int8>> __bufloc,
  ffi.Pointer<ffi.Int32> __sizeloc,
) {
  return _open_memstream(
    __bufloc,
    __sizeloc,
  );
}