pub unsafe extern "C" fn svn_txdelta_send_stream(
stream: *mut svn_stream_t,
handler: svn_txdelta_window_handler_t,
handler_baton: *mut c_void,
digest: *mut c_uchar,
pool: *mut apr_pool_t,
) -> *mut svn_error_tExpand description
Send the contents of @a stream to window-handler @a handler/@a baton. This is effectively a ‘copy’ operation, resulting in delta windows that make the target equivalent to the stream.
If @a digest is non-NULL, populate it with the md5 checksum for the fulltext that was deltified (@a digest must be at least @c APR_MD5_DIGESTSIZE bytes long).
All temporary allocation is performed in @a pool.