Sha256: c109a93dab1485df8adc272db24be0bb6e07f849002dce2c55ce3e03ea138c76
Contents?: true
Size: 744 Bytes
Versions: 3
Compression:
Stored size: 744 Bytes
Contents
/* * Copyright (C) the libgit2 contributors. All rights reserved. * * This file is part of libgit2, distributed under the GNU GPL v2 with * a Linking Exception. For full terms see the included COPYING file. */ #ifndef INCLUDE_oidarray_h__ #define INCLUDE_oidarray_h__ #include "common.h" #include "git2/oidarray.h" #include "array.h" typedef git_array_t(git_oid) git_array_oid_t; extern void git_oidarray__reverse(git_oidarray *arr); extern void git_oidarray__from_array(git_oidarray *out, const git_array_oid_t *array); extern void git_oidarray__to_array(git_array_oid_t *out, const git_oidarray *array); int git_oidarray__add(git_array_oid_t *arr, git_oid *id); bool git_oidarray__remove(git_array_oid_t *arr, git_oid *id); #endif
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rugged-1.9.0 | vendor/libgit2/src/libgit2/oidarray.h |
rugged-1.7.2 | vendor/libgit2/src/libgit2/oidarray.h |
rugged-1.7.1 | vendor/libgit2/src/libgit2/oidarray.h |