~ubuntu-branches/ubuntu/intrepid/git-core/intrepid-security

« back to all changes in this revision

Viewing changes to csum-file.h

  • Committer: Package Import Robot
  • Author(s): Gerrit Pape
  • Date: 2007-10-04 08:27:01 UTC
  • mfrom: (1.1.23)
  • Revision ID: package-import@ubuntu.com-20071004082701-rsd058ontoqz4i30
Tags: 1:1.5.3.4-1
new upstream point release (closes: #445188).

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
};
14
14
 
15
15
extern struct sha1file *sha1fd(int fd, const char *name);
16
 
extern struct sha1file *sha1create(const char *fmt, ...) __attribute__((format (printf, 1, 2)));
17
16
extern int sha1close(struct sha1file *, unsigned char *, int);
18
17
extern int sha1write(struct sha1file *, void *, unsigned int);
19
 
extern int sha1write_compressed(struct sha1file *, void *, unsigned int);
20
18
extern void crc32_begin(struct sha1file *);
21
19
extern uint32_t crc32_end(struct sha1file *);
22
20