pub unsafe extern "C" fn svn_wc_conflicted_p(
text_conflicted_p: *mut svn_boolean_t,
prop_conflicted_p: *mut svn_boolean_t,
dir_path: *const c_char,
entry: *const svn_wc_entry_t,
pool: *mut apr_pool_t,
) -> *mut svn_error_t
Expand description
Given a @a dir_path under version control, decide if one of its entries (@a entry) is in a state of conflict; return the answers in @a text_conflicted_p and @a prop_conflicted_p. These pointers must not be null.
If the @a entry mentions that text conflict files (with suffix .mine, .theirs, etc.) exist, but they cannot be found, assume the text conflict has been resolved by the user and return FALSE in @a *text_conflicted_p.
Similarly, if the @a entry mentions that a property conflicts file (.prej suffix) exists, but it cannot be found, assume the property conflicts have been resolved by the user and return FALSE in @a *prop_conflicted_p.
The @a entry is not updated.
@deprecated Provided for backward compatibility with the 1.5 API.