Fourth batch
[git/raj.git] / streaming.h
blob5e4e6acfd0dc947bcb92680fbae71de1fc486a78
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 struct git_istream *open_istream(struct repository *, const struct object_id *,
12 enum object_type *, unsigned long *,
13 struct stream_filter *);
14 int close_istream(struct git_istream *);
15 ssize_t read_istream(struct git_istream *, void *, size_t);
17 int stream_blob_to_fd(int fd, const struct object_id *, struct stream_filter *, int can_seek);
19 #endif /* STREAMING_H */