1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-26 08:16:12 +02:00
git/fetch-object.h
Christian Couder 2e860675b6 fetch-object: make functions return an error code
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>
2019-06-25 14:05:37 -07:00

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