streaming.hon commit t7810: fix duplicated test title (fe0537a)
   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
  11extern struct git_istream *open_istream(const unsigned char *, enum object_type *, unsigned long *, struct stream_filter *);
  12extern int close_istream(struct git_istream *);
  13extern ssize_t read_istream(struct git_istream *, char *, size_t);
  14
  15#endif /* STREAMING_H */