pub unsafe extern "C" fn svn_io_open_unique_file(
f: *mut *mut apr_file_t,
unique_name_p: *mut *const c_char,
path: *const c_char,
suffix: *const c_char,
delete_on_close: svn_boolean_t,
pool: *mut apr_pool_t,
) -> *mut svn_error_t
Expand description
Like svn_io_open_unique_file2, but can’t delete on pool cleanup.
@deprecated Provided for backward compatibility with the 1.3 API
@note In 1.4 the API was extended to require either @a f or @a unique_name_p (the other can be NULL). Before that, both were required.