10 lines
166 B
C
10 lines
166 B
C
|
#ifndef FETCH_OBJECT_H
|
||
|
#define FETCH_OBJECT_H
|
||
|
|
||
|
struct object_id;
|
||
|
|
||
|
void fetch_objects(const char *remote_name, const struct object_id *oids,
|
||
|
int oid_nr);
|
||
|
|
||
|
#endif
|