]> git.proxmox.com Git - libgit2.git/blob - src/libgit2/oidarray.h
Merge https://salsa.debian.org/debian/libgit2 into proxmox/bullseye
[libgit2.git] / src / libgit2 / oidarray.h
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"
11
12 #include "git2/oidarray.h"
13 #include "array.h"
14
15 typedef git_array_t(git_oid) git_array_oid_t;
16
17 extern void git_oidarray__reverse(git_oidarray *arr);
18 extern void git_oidarray__from_array(git_oidarray *arr, git_array_oid_t *array);
19
20 #endif