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_sys_git_reflog_h__ 8 #define INCLUDE_sys_git_reflog_h__ 9 10 #include "git2/common.h" 11 #include "git2/types.h" 12 #include "git2/oid.h" 13 14 GIT_BEGIN_DECL 15 16 GIT_EXTERN(git_reflog_entry *) git_reflog_entry__alloc(void); 17 GIT_EXTERN(void) git_reflog_entry__free(git_reflog_entry *entry); 18 19 GIT_END_DECL 20 21 #endif 22