summaryrefslogtreecommitdiff
path: root/bundle-uri.h
blob: 8a152f1ef142f953ac760dc62e49b47074aae8ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef BUNDLE_URI_H
#define BUNDLE_URI_H

struct repository;

/**
 * Fetch data from the given 'uri' and unbundle the bundle data found
 * based on that information.
 *
 * Returns non-zero if no bundle information is found at the given 'uri'.
 */
int fetch_bundle_uri(struct repository *r, const char *uri);

#endif