]> git.proxmox.com Git - libgit2.git/blame - src/libgit2/oidarray.h
Merge https://salsa.debian.org/debian/libgit2 into proxmox/bullseye
[libgit2.git] / src / libgit2 / oidarray.h
CommitLineData
7db0e6ee
CMN
1/*
2 * Copyright (C) the libgit2 contributors. All rights reserved.
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 */
7#ifndef INCLUDE_oidarray_h__
8#define INCLUDE_oidarray_h__
9
10#include "common.h"
eae0bfdc 11
7db0e6ee
CMN
12#include "git2/oidarray.h"
13#include "array.h"
14
15typedef git_array_t(git_oid) git_array_oid_t;
16
eae0bfdc 17extern void git_oidarray__reverse(git_oidarray *arr);
7db0e6ee
CMN
18extern void git_oidarray__from_array(git_oidarray *arr, git_array_oid_t *array);
19
20#endif