21c7c2d92d
In the rest of Git, these modes are spelled as S_IFDIR, S_IFREG | 0644, S_IFREG | 0755, and S_IFLNK. Use the same constants in svn-fe for simplicity and consistency. No functional change intended. Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
9 lines
234 B
C
9 lines
234 B
C
#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
|