The eighth batch
[alt-git.git] / reftable / system.h
blob5d8b6dede50414b750f39778c6070731b096d218
1 /*
2 Copyright 2020 Google LLC
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 */
9 #ifndef SYSTEM_H
10 #define SYSTEM_H
12 /* This header glues the reftable library to the rest of Git */
14 #include "git-compat-util.h"
15 #include "lockfile.h"
16 #include "strbuf.h"
17 #include "tempfile.h"
18 #include "hash-ll.h" /* hash ID, sizes.*/
19 #include "dir.h" /* remove_dir_recursively, for tests.*/
21 int hash_size(uint32_t id);
23 #endif