diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-09-10 17:03:08 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-09-10 17:03:08 +0900 |
commit | 044aa0eb7fa44f0f2d44c3331d6218e087b45fc2 (patch) | |
tree | 11d4a0801d6346361af781c7e0333fd9ece02cd5 /vcs-svn/repo_tree.h | |
parent | 5e03ae4594358b3ab71cf98f18b4ccb18af99e6d (diff) | |
parent | 15d1d0951e60903263f90af912738ad60ac43bb5 (diff) | |
download | git-044aa0eb7fa44f0f2d44c3331d6218e087b45fc2.tar.gz git-044aa0eb7fa44f0f2d44c3331d6218e087b45fc2.tar.xz |
Merge branch 'bc/vcs-svn-cleanup' into maint
Code clean-up.
* bc/vcs-svn-cleanup:
vcs-svn: rename repo functions to "svn_repo"
vcs-svn: remove unused prototypes
Diffstat (limited to 'vcs-svn/repo_tree.h')
-rw-r--r-- | vcs-svn/repo_tree.h | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/vcs-svn/repo_tree.h b/vcs-svn/repo_tree.h index 889c6a3c9..555b64bbb 100644 --- a/vcs-svn/repo_tree.h +++ b/vcs-svn/repo_tree.h @@ -9,15 +9,8 @@ struct strbuf; #define REPO_MODE_LNK 0120000 uint32_t next_blob_mark(void); -void repo_copy(uint32_t revision, const char *src, const char *dst); -void repo_add(const char *path, uint32_t mode, uint32_t blob_mark); -const char *repo_read_path(const char *path, uint32_t *mode_out); -void repo_delete(const char *path); -void repo_commit(uint32_t revision, const char *author, - const struct strbuf *log, const char *uuid, const char *url, - long unsigned timestamp); -void repo_diff(uint32_t r1, uint32_t r2); -void repo_init(void); -void repo_reset(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 |