Staging
v0.5.1
Revision e5056c05ecd2bdaceaa95e12e9e94b1584ec59c8 authored by Junio C Hamano on 03 April 2012, 16:25:49 UTC, committed by Junio C Hamano on 03 April 2012, 16:30:58 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent ca2b71a
Raw File
streaming.h
/*
 * Copyright (c) 2011, Google Inc.
 */
#ifndef STREAMING_H
#define STREAMING_H 1
#include "cache.h"

/* opaque */
struct git_istream;

extern struct git_istream *open_istream(const unsigned char *, enum object_type *, unsigned long *, struct stream_filter *);
extern int close_istream(struct git_istream *);
extern ssize_t read_istream(struct git_istream *, char *, size_t);

#endif /* STREAMING_H */
back to top