summaryrefslogtreecommitdiff
path: root/csum-file.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-28 18:10:06 (GMT)
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-28 18:10:06 (GMT)
commit4397f0148ad0967cf3a2d794fb3d6b2c7f8738d7 (patch)
treeceb1717d793364c2d2d1bc96f6f949e5de5216e7 /csum-file.h
parent5571be75ebb6c8a1f88b3897d9631279106d8e0f (diff)
downloadgit-4397f0148ad0967cf3a2d794fb3d6b2c7f8738d7.zip
git-4397f0148ad0967cf3a2d794fb3d6b2c7f8738d7.tar.gz
git-4397f0148ad0967cf3a2d794fb3d6b2c7f8738d7.tar.bz2
csum-file: add "sha1fd()" to create a SHA1 csum file from an existing file descriptor
We'll use this soon to write pack-files to stdout.
Diffstat (limited to 'csum-file.h')
-rw-r--r--csum-file.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/csum-file.h b/csum-file.h
index 2b6c8dc..776cfb1 100644
--- a/csum-file.h
+++ b/csum-file.h
@@ -10,6 +10,7 @@ struct sha1file {
unsigned char buffer[8192];
};
+extern struct sha1file *sha1fd(int fd, const char *name);
extern struct sha1file *sha1create(const char *fmt, ...);
extern int sha1close(struct sha1file *, unsigned char *, int);
extern int sha1write(struct sha1file *, void *, unsigned int);