2011-05-12 10:30:25 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011, Google Inc.
|
|
|
|
*/
|
|
|
|
#ifndef STREAMING_H
|
|
|
|
#define STREAMING_H 1
|
|
|
|
#include "cache.h"
|
|
|
|
|
|
|
|
/* opaque */
|
|
|
|
struct git_istream;
|
|
|
|
|
2011-05-21 05:33:31 +08:00
|
|
|
extern struct git_istream *open_istream(const unsigned char *, enum object_type *, unsigned long *, struct stream_filter *);
|
2011-05-12 10:30:25 +08:00
|
|
|
extern int close_istream(struct git_istream *);
|
2012-05-03 09:51:00 +08:00
|
|
|
extern ssize_t read_istream(struct git_istream *, void *, size_t);
|
2011-05-12 10:30:25 +08:00
|
|
|
|
2012-03-07 18:54:15 +08:00
|
|
|
extern int stream_blob_to_fd(int fd, const unsigned char *, struct stream_filter *, int can_seek);
|
|
|
|
|
2011-05-12 10:30:25 +08:00
|
|
|
#endif /* STREAMING_H */
|