pub unsafe extern "C" fn svn_client_revert(
paths: *const apr_array_header_t,
recursive: svn_boolean_t,
ctx: *mut svn_client_ctx_t,
pool: *mut apr_pool_t,
) -> *mut svn_error_t
Expand description
Similar to svn_client_revert2(), but with @a changelists passed as @c NULL, and @a depth set according to @a recurse: if @a recurse is TRUE, @a depth is #svn_depth_infinity, else if @a recurse is FALSE, @a depth is #svn_depth_empty.
@note Most APIs map @a recurse==FALSE to @a depth==svn_depth_files; revert is deliberately different.
@deprecated Provided for backwards compatibility with the 1.4 API.