diff options
author | Daniel Barkalow <barkalow@iabervon.org> | 2008-02-25 14:24:48 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-02-25 13:06:49 -0800 |
commit | 1468bd47833c6ec3c85620d6af1d910e9378f714 (patch) | |
tree | 0a5e2d838f48d511f6552d525c821f9a41fc1ab5 /cache.h | |
parent | ed10d9aa3f771ad343df5aa50d9004945f7a4e56 (diff) | |
download | git-1468bd47833c6ec3c85620d6af1d910e9378f714.tar.gz git-1468bd47833c6ec3c85620d6af1d910e9378f714.tar.xz |
Use a single implementation and API for copy_file()
Originally by Kristian Hï¿œgsberg; I fixed the conversion of rerere, which
had a different API.
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -602,6 +602,7 @@ extern const char *git_log_output_encoding; /* IO helper functions */ extern void maybe_flush_or_die(FILE *, const char *); extern int copy_fd(int ifd, int ofd); +extern int copy_file(const char *dst, const char *src, int mode); extern int read_in_full(int fd, void *buf, size_t count); extern int write_in_full(int fd, const void *buf, size_t count); extern void write_or_die(int fd, const void *buf, size_t count); |