Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:59:36

0001 /*
0002  * Copyright (C) the libgit2 contributors. All rights reserved.
0003  *
0004  * This file is part of libgit2, distributed under the GNU GPL v2 with
0005  * a Linking Exception. For full terms see the included COPYING file.
0006  */
0007 #ifndef INCLUDE_sys_git_reflog_h__
0008 #define INCLUDE_sys_git_reflog_h__
0009 
0010 #include "git2/common.h"
0011 #include "git2/types.h"
0012 #include "git2/oid.h"
0013 
0014 GIT_BEGIN_DECL
0015 
0016 GIT_EXTERN(git_reflog_entry *) git_reflog_entry__alloc(void);
0017 GIT_EXTERN(void) git_reflog_entry__free(git_reflog_entry *entry);
0018 
0019 GIT_END_DECL
0020 
0021 #endif