Han-Wen Nienhuys | ef8a6c6 | 2021-10-07 20:25:00 +0000 | [diff] [blame] | 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" |
Patrick Steinhardt | 3a60f6a | 2024-03-07 14:10:39 +0100 | [diff] [blame] | 15 | #include "lockfile.h" |
Han-Wen Nienhuys | ef8a6c6 | 2021-10-07 20:25:00 +0000 | [diff] [blame] | 16 | #include "strbuf.h" |
Patrick Steinhardt | 3a60f6a | 2024-03-07 14:10:39 +0100 | [diff] [blame] | 17 | #include "tempfile.h" |
Elijah Newren | d1cbe1e | 2023-04-22 20:17:20 +0000 | [diff] [blame] | 18 | #include "hash-ll.h" /* hash ID, sizes.*/ |
Han-Wen Nienhuys | ef8a6c6 | 2021-10-07 20:25:00 +0000 | [diff] [blame] | 19 | #include "dir.h" /* remove_dir_recursively, for tests.*/ |
| 20 | |
Han-Wen Nienhuys | ef8a6c6 | 2021-10-07 20:25:00 +0000 | [diff] [blame] | 21 | int hash_size(uint32_t id); |
| 22 | |
| 23 | #endif |