vcs-svn: rename repo functions to "svn_repo"
[alt-git.git] / vcs-svn / repo_tree.h
blob555b64bbb6bddc4c580a44834f05912a3c897635
1 #ifndef REPO_TREE_H_
2 #define REPO_TREE_H_
4 struct strbuf;
6 #define REPO_MODE_DIR 0040000
7 #define REPO_MODE_BLB 0100644
8 #define REPO_MODE_EXE 0100755
9 #define REPO_MODE_LNK 0120000
11 uint32_t next_blob_mark(void);
12 void svn_repo_copy(uint32_t revision, const char *src, const char *dst);
13 const char *svn_repo_read_path(const char *path, uint32_t *mode_out);
14 void svn_repo_delete(const char *path);
16 #endif