mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-05 22:55:47 +00:00

Create a new include/git2/sys/refs.h and move the reference alloc functions there. Also fix some documentation issues and some minor code cleanups.
10 lines
224 B
C
10 lines
224 B
C
#include <git2/errors.h>
|
|
#include <git2/repository.h>
|
|
#include <git2/refdb.h>
|
|
#include <git2/sys/refs.h>
|
|
#include <git2/sys/refdb_backend.h>
|
|
|
|
int refdb_backend_test(
|
|
git_refdb_backend **backend_out,
|
|
git_repository *repo);
|