diff options
author | Elijah Newren <newren@gmail.com> | 2023-04-22 22:17:12 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-04-24 21:47:31 +0200 |
commit | d5fff46f4025e23ec61b9d74eac2bb19e7a2385d (patch) | |
tree | 223c06ef38786395f30a23006a2fdd71c451a978 /cache.h | |
parent | server-info.h: move declarations for server-info.c functions from cache.h (diff) | |
download | git-d5fff46f4025e23ec61b9d74eac2bb19e7a2385d.tar.xz git-d5fff46f4025e23ec61b9d74eac2bb19e7a2385d.zip |
copy.h: move declarations for copy.c functions from cache.h
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -593,12 +593,6 @@ int df_name_compare(const char *name1, size_t len1, int mode1, int name_compare(const char *name1, size_t len1, const char *name2, size_t len2); int cache_name_stage_compare(const char *name1, int len1, int stage1, const char *name2, int len2, int stage2); -#define COPY_READ_ERROR (-2) -#define COPY_WRITE_ERROR (-3) -int copy_fd(int ifd, int ofd); -int copy_file(const char *dst, const char *src, int mode); -int copy_file_with_time(const char *dst, const char *src, int mode); - /* base85 */ int decode_85(char *dst, const char *line, int linelen); void encode_85(char *buf, const unsigned char *data, int bytes); |