vcs-svn: remove more unused prototypes and declarations
[git.git] / vcs-svn / repo_tree.h
blob0d3bbb677dd5556a416ab685dd9f770ba7b99c67
1 #ifndef REPO_TREE_H_
2 #define REPO_TREE_H_
4 #define REPO_MODE_DIR 0040000
5 #define REPO_MODE_BLB 0100644
6 #define REPO_MODE_EXE 0100755
7 #define REPO_MODE_LNK 0120000
9 void svn_repo_copy(uint32_t revision, const char *src, const char *dst);
10 const char *svn_repo_read_path(const char *path, uint32_t *mode_out);
11 void svn_repo_delete(const char *path);
13 #endif