svn_repos_create

Function svn_repos_create 

Source
pub unsafe extern "C" fn svn_repos_create(
    repos_p: *mut *mut svn_repos_t,
    path: *const c_char,
    unused_1: *const c_char,
    unused_2: *const c_char,
    config: *mut apr_hash_t,
    fs_config: *mut apr_hash_t,
    pool: *mut apr_pool_t,
) -> *mut svn_error_t
Expand description

Create a new Subversion repository at @a path, building the necessary directory structure, creating the filesystem, and so on. Return the repository object in @a *repos_p, allocated in @a pool.

@a config is a client configuration hash of #svn_config_t * items keyed on config category names, and may be NULL.

@a fs_config is passed to the filesystem, and may be NULL.

@a unused_1 and @a unused_2 are not used and should be NULL.