6 #define REPO_MODE_DIR 0040000
7 #define REPO_MODE_BLB 0100644
8 #define REPO_MODE_EXE 0100755
9 #define REPO_MODE_LNK 0120000
11 #define REPO_MAX_PATH_LEN 4096
12 #define REPO_MAX_PATH_DEPTH 1000
14 uint32_t next_blob_mark(void);
15 void repo_copy(uint32_t revision
, const uint32_t *src
, const uint32_t *dst
);
16 void repo_add(uint32_t *path
, uint32_t mode
, uint32_t blob_mark
);
17 const char *repo_read_path(const uint32_t *path
, uint32_t *mode_out
);
18 void repo_delete(uint32_t *path
);
19 void repo_commit(uint32_t revision
, const char *author
,
20 const struct strbuf
*log
, const char *uuid
, const char *url
,
21 long unsigned timestamp
);
22 void repo_diff(uint32_t r1
, uint32_t r2
);
24 void repo_reset(void);