2e860675b6
The callers of the fetch_object() and fetch_objects() might be interested in knowing if these functions succeeded or not. Signed-off-by: Christian Couder <chriscool@tuxfamily.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
10 lines
164 B
C
10 lines
164 B
C
#ifndef FETCH_OBJECT_H
|
|
#define FETCH_OBJECT_H
|
|
|
|
struct object_id;
|
|
|
|
int fetch_objects(const char *remote_name, const struct object_id *oids,
|
|
int oid_nr);
|
|
|
|
#endif
|