]> git.proxmox.com Git - libgit2.git/blame - src/fetch.h
patch: use strlen to mean string length
[libgit2.git] / src / fetch.h
CommitLineData
bb742ede 1/*
359fc2d2 2 * Copyright (C) the libgit2 contributors. All rights reserved.
bb742ede
VM
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
e1d88030
CMN
7#ifndef INCLUDE_fetch_h__
8#define INCLUDE_fetch_h__
9
2c982daa
CMN
10#include "netops.h"
11
35a8a8c5 12int git_fetch_negotiate(git_remote *remote, const git_fetch_options *opts);
e1d88030 13
8f0104ec 14int git_fetch_download_pack(git_remote *remote, const git_remote_callbacks *callbacks);
216863c4 15
dee5515a 16int git_fetch_setup_walk(git_revwalk **out, git_repository *repo);
2c982daa 17
e1d88030 18#endif