SubmittingPatches: mention the git contacts command
[git.git] / streaming.h
blob73c1d156b352898c9b5661a3e480f579b80c5a00
1 /*
2 * Copyright (c) 2011, Google Inc.
3 */
4 #ifndef STREAMING_H
5 #define STREAMING_H 1
6 #include "cache.h"
8 /* opaque */
9 struct git_istream;
11 extern struct git_istream *open_istream(const unsigned char *, enum object_type *, unsigned long *, struct stream_filter *);
12 extern int close_istream(struct git_istream *);
13 extern ssize_t read_istream(struct git_istream *, void *, size_t);
15 extern int stream_blob_to_fd(int fd, const struct object_id *, struct stream_filter *, int can_seek);
17 #endif /* STREAMING_H */