pub unsafe extern "C" fn svn_repos_get_committed_info(
committed_rev: *mut svn_revnum_t,
committed_date: *mut *const c_char,
last_author: *mut *const c_char,
root: *mut svn_fs_root_t,
path: *const c_char,
pool: *mut apr_pool_t,
) -> *mut svn_error_t
Expand description
Given a @a root/@a path within some filesystem, return three pieces of information allocated in @a pool:
-
set @a *committed_rev to the revision in which the object was last modified. (In fs parlance, this is the revision in which the particular node-rev-id was ‘created’.)
-
set @a *committed_date to the date of said revision, or @c NULL if not available.
-
set @a *last_author to the author of said revision, or @c NULL if not available.