]> git.ipfire.org Git - thirdparty/git.git/blob - reftable/system.h
Merge branch 'hy/doc-show-is-like-log-not-diff-tree'
[thirdparty/git.git] / reftable / system.h
1 /*
2 Copyright 2020 Google LLC
3
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file or at
6 https://developers.google.com/open-source/licenses/bsd
7 */
8
9 #ifndef SYSTEM_H
10 #define SYSTEM_H
11
12 /* This header glues the reftable library to the rest of Git */
13
14 #include "git-compat-util.h"
15 #include "strbuf.h"
16 #include "hash-ll.h" /* hash ID, sizes.*/
17 #include "dir.h" /* remove_dir_recursively, for tests.*/
18
19 int hash_size(uint32_t id);
20
21 #endif