[PATCH] Remove the explicit Makefile dependencies description
[git/dscho.git] / csum-file.h
blob776cfb152af2b6c4fb6c190d875b4fb2f9162c9a
1 #ifndef CSUM_FILE_H
2 #define CSUM_FILE_H
4 /* A SHA1-protected file */
5 struct sha1file {
6 int fd, error;
7 unsigned int offset, namelen;
8 SHA_CTX ctx;
9 char name[PATH_MAX];
10 unsigned char buffer[8192];
13 extern struct sha1file *sha1fd(int fd, const char *name);
14 extern struct sha1file *sha1create(const char *fmt, ...);
15 extern int sha1close(struct sha1file *, unsigned char *, int);
16 extern int sha1write(struct sha1file *, void *, unsigned int);
17 extern int sha1write_compressed(struct sha1file *, void *, unsigned int);
19 #endif