Skip to main content

svn_client_diff_peg7

Function svn_client_diff_peg7 

Source
pub unsafe extern "C" fn svn_client_diff_peg7(
    diff_options: *const apr_array_header_t,
    path_or_url: *const c_char,
    peg_revision: *const svn_opt_revision_t,
    start_revision: *const svn_opt_revision_t,
    end_revision: *const svn_opt_revision_t,
    relative_to_dir: *const c_char,
    depth: svn_depth_t,
    ignore_ancestry: svn_boolean_t,
    no_diff_added: svn_boolean_t,
    no_diff_deleted: svn_boolean_t,
    show_copies_as_adds: svn_boolean_t,
    ignore_content_type: svn_boolean_t,
    ignore_properties: svn_boolean_t,
    properties_only: svn_boolean_t,
    use_git_diff_format: svn_boolean_t,
    pretty_print_mergeinfo: svn_boolean_t,
    header_encoding: *const c_char,
    outstream: *mut svn_stream_t,
    errstream: *mut svn_stream_t,
    changelists: *const apr_array_header_t,
    ctx: *mut svn_client_ctx_t,
    pool: *mut apr_pool_t,
) -> *mut svn_error_t
Expand description

Produce diff output which describes the delta between the filesystem object @a path_or_url in peg revision @a peg_revision, as it changed between @a start_revision and @a end_revision. @a path_or_url can be either a working-copy path or URL.

If @a peg_revision is #svn_opt_revision_unspecified, behave identically to svn_client_diff7(), using @a path_or_url for both of that function’s @a path_or_url1 and @a path_or_url2 arguments.

All other options are handled identically to svn_client_diff7().

@since New in 1.8.