blob: 4b269d07ed635b3e6b1f5f7b2118d290d27e7e4e [file] [log] [blame]
Jonathan Tan88e2f9e2017-12-05 16:58:49 +00001#ifndef FETCH_OBJECT_H
2#define FETCH_OBJECT_H
3
Jonathan Tanc0c578b2017-12-08 15:58:47 +00004#include "sha1-array.h"
5
Jonathan Tan88e2f9e2017-12-05 16:58:49 +00006extern void fetch_object(const char *remote_name, const unsigned char *sha1);
7
Jonathan Tanc0c578b2017-12-08 15:58:47 +00008extern void fetch_objects(const char *remote_name,
9 const struct oid_array *to_fetch);
10
Jonathan Tan88e2f9e2017-12-05 16:58:49 +000011#endif