svn_wc_transmit_text_deltas2

Function svn_wc_transmit_text_deltas2 

Source
pub unsafe extern "C" fn svn_wc_transmit_text_deltas2(
    tempfile: *mut *const c_char,
    digest: *mut c_uchar,
    path: *const c_char,
    adm_access: *mut svn_wc_adm_access_t,
    fulltext: svn_boolean_t,
    editor: *const svn_delta_editor_t,
    file_baton: *mut c_void,
    pool: *mut apr_pool_t,
) -> *mut svn_error_t
Expand description

Similar to svn_wc_transmit_text_deltas3(), but with a relative path and adm_access baton, and the checksum output is an MD5 digest instead of two svn_checksum_t objects.

If @a tempfile is non-NULL, make a copy of @a path with keywords and eol translated to repository-normal form, and set @a *tempfile to the absolute path to this copy, allocated in @a result_pool. The copy will be in the temporary-text-base directory. Do not clean up the copy; caller can do that. (The purpose of handing back the tmp copy is that it is usually about to become the new text base anyway, but the installation of the new text base is outside the scope of this function.)

@since New in 1.4. @deprecated Provided for backwards compatibility with the 1.6 API.