blob: 5d8b6dede50414b750f39778c6070731b096d218 [file] [log] [blame]
Han-Wen Nienhuysef8a6c62021-10-07 20:25:00 +00001/*
2Copyright 2020 Google LLC
3
4Use of this source code is governed by a BSD-style
5license that can be found in the LICENSE file or at
6https://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 Steinhardt3a60f6a2024-03-07 14:10:39 +010015#include "lockfile.h"
Han-Wen Nienhuysef8a6c62021-10-07 20:25:00 +000016#include "strbuf.h"
Patrick Steinhardt3a60f6a2024-03-07 14:10:39 +010017#include "tempfile.h"
Elijah Newrend1cbe1e2023-04-22 20:17:20 +000018#include "hash-ll.h" /* hash ID, sizes.*/
Han-Wen Nienhuysef8a6c62021-10-07 20:25:00 +000019#include "dir.h" /* remove_dir_recursively, for tests.*/
20
Han-Wen Nienhuysef8a6c62021-10-07 20:25:00 +000021int hash_size(uint32_t id);
22
23#endif