blob: 0d3bbb677dd5556a416ab685dd9f770ba7b99c67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef REPO_TREE_H_
#define REPO_TREE_H_
#define REPO_MODE_DIR 0040000
#define REPO_MODE_BLB 0100644
#define REPO_MODE_EXE 0100755
#define REPO_MODE_LNK 0120000
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
|