aboutsummaryrefslogtreecommitdiffstats
path: root/vcs-svn/repo_tree.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-08-26 22:55:06 -0700
committerJunio C Hamano <gitster@pobox.com>2017-08-26 22:55:06 -0700
commit18c88f9af69ece938083409494fe204fbe376a11 (patch)
tree00a48cb23a8861ef173aea3d920321fd8aeb15c1 /vcs-svn/repo_tree.h
parentMerge branch 'bc/vcs-svn-cleanup' (diff)
parentvcs-svn: move remaining repo_tree functions to fast_export.h (diff)
downloadgit-18c88f9af69ece938083409494fe204fbe376a11.tar.gz
git-18c88f9af69ece938083409494fe204fbe376a11.zip
Merge branch 'jn/vcs-svn-cleanup'
Code clean-up. * jn/vcs-svn-cleanup: vcs-svn: move remaining repo_tree functions to fast_export.h vcs-svn: remove repo_delete wrapper function vcs-svn: remove custom mode constants vcs-svn: remove more unused prototypes and declarations
Diffstat (limited to 'vcs-svn/repo_tree.h')
-rw-r--r--vcs-svn/repo_tree.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/vcs-svn/repo_tree.h b/vcs-svn/repo_tree.h
deleted file mode 100644
index 555b64bbb6..0000000000
--- a/vcs-svn/repo_tree.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef REPO_TREE_H_
-#define REPO_TREE_H_
-
-struct strbuf;
-
-#define REPO_MODE_DIR 0040000
-#define REPO_MODE_BLB 0100644
-#define REPO_MODE_EXE 0100755
-#define REPO_MODE_LNK 0120000
-
-uint32_t next_blob_mark(void);
-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