2010-08-10 00:48:10 +02:00
|
|
|
#ifndef REPO_TREE_H_
|
|
|
|
#define REPO_TREE_H_
|
|
|
|
|
2011-03-26 06:49:37 +01:00
|
|
|
struct strbuf;
|
2010-08-10 00:48:10 +02:00
|
|
|
|
|
|
|
#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);
|
2017-08-21 02:00:18 +02:00
|
|
|
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);
|
2010-08-10 00:48:10 +02:00
|
|
|
|
|
|
|
#endif
|