]> git.proxmox.com Git - libgit2.git/blame - src/oidarray.h
Include stacktrace summary in memory leak output.
[libgit2.git] / src / 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"
11#include "git2/oidarray.h"
12#include "array.h"
13
14typedef git_array_t(git_oid) git_array_oid_t;
15
16extern void git_oidarray__from_array(git_oidarray *arr, git_array_oid_t *array);
17
18#endif