blob: c840bc9baeed35adb153a5c76702f5efc14295fe (
plain)
1
2
3
4
5
6
7
8
|
#ifndef REPO_TREE_H_
#define REPO_TREE_H_
void svn_repo_copy(uint32_t revision, const char *src, const char *dst);
const char *svn_repo_read_path(const char *path, uint32_t *mode_out);
void svn_repo_delete(const char *path);
#endif
|