]> git.ipfire.org Git - thirdparty/git.git/blame - reftable/system.h
hash-ll.h: split out of hash.h to remove dependency on repository.h
[thirdparty/git.git] / reftable / system.h
CommitLineData
ef8a6c62
HWN
1/*
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"
15#include "strbuf.h"
d1cbe1e6 16#include "hash-ll.h" /* hash ID, sizes.*/
ef8a6c62
HWN
17#include "dir.h" /* remove_dir_recursively, for tests.*/
18
ef8a6c62
HWN
19int hash_size(uint32_t id);
20
21#endif