]> git.proxmox.com Git - libgit2.git/blob - src/reflog.h
patch: use strlen to mean string length
[libgit2.git] / src / reflog.h
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_reflog_h__
8 #define INCLUDE_reflog_h__
9
10 #include "common.h"
11 #include "git2/reflog.h"
12 #include "vector.h"
13
14 #define GIT_REFLOG_DIR "logs/"
15 #define GIT_REFLOG_DIR_MODE 0777
16 #define GIT_REFLOG_FILE_MODE 0666
17
18 #define GIT_REFLOG_SIZE_MIN (2*GIT_OID_HEXSZ+2+17)
19
20 struct git_reflog_entry {
21 git_oid oid_old;
22 git_oid oid_cur;
23
24 git_signature *committer;
25
26 char *msg;
27 };
28
29 struct git_reflog {
30 git_refdb *db;
31 char *ref_name;
32 git_vector entries;
33 };
34
35 GIT_INLINE(size_t) reflog_inverse_index(size_t idx, size_t total)
36 {
37 return (total - 1) - idx;
38 }
39
40 #endif /* INCLUDE_reflog_h__ */