Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-28 22:10:06 +0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-28 22:10:06 +0400
commit4397f0148ad0967cf3a2d794fb3d6b2c7f8738d7 (patch)
treeceb1717d793364c2d2d1bc96f6f949e5de5216e7 /csum-file.h
parent5571be75ebb6c8a1f88b3897d9631279106d8e0f (diff)
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 2b6c8dcad2..776cfb152a 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);