svn_io_filesizes_different_p

Function svn_io_filesizes_different_p 

Source
pub unsafe extern "C" fn svn_io_filesizes_different_p(
    different_p: *mut svn_boolean_t,
    file1: *const c_char,
    file2: *const c_char,
    pool: *mut apr_pool_t,
) -> *mut svn_error_t
Expand description

Set @a *different_p to TRUE if @a file1 and @a file2 have different sizes, else set to FALSE. Both @a file1 and @a file2 are utf8-encoded.

Setting @a *different_p to zero does not mean the files definitely have the same size, it merely means that the sizes are not definitely different. That is, if the size of one or both files cannot be determined, then the sizes are not known to be different, so @a *different_p is set to FALSE.