git-pack-objects: write the pack files with a SHA1 csum
[git/debian.git] / csum-file.h
blob1086f04caa228f044cdce0b5f0f63edfbc3bed79
1 #ifndef CSUM_FILE_H
2 #define CSUM_FILE_H
4 /* A SHA1-protected file */
5 struct sha1file {
6 int fd, error;
7 unsigned long offset;
8 SHA_CTX ctx;
9 unsigned char buffer[8192];
12 extern struct sha1file *sha1create(const char *fmt, ...);
13 extern int sha1close(struct sha1file *);
14 extern int sha1write(struct sha1file *, void *, unsigned int);
15 extern int sha1write_compressed(struct sha1file *, void *, unsigned int);
17 #endif