]> git.ipfire.org Git - thirdparty/git.git/blame - streaming.h
Merge branch 'jt/delay-fetch-if-missing'
[thirdparty/git.git] / streaming.h
CommitLineData
46bf0438
JH
1/*
2 * Copyright (c) 2011, Google Inc.
3 */
4#ifndef STREAMING_H
5#define STREAMING_H 1
6#include "cache.h"
7
8/* opaque */
9struct git_istream;
10
55454427
DL
11struct git_istream *open_istream(const struct object_id *, enum object_type *, unsigned long *, struct stream_filter *);
12int close_istream(struct git_istream *);
13ssize_t read_istream(struct git_istream *, void *, size_t);
46bf0438 14
55454427 15int stream_blob_to_fd(int fd, const struct object_id *, struct stream_filter *, int can_seek);
47a02ff2 16
46bf0438 17#endif /* STREAMING_H */