]> git.ipfire.org Git - thirdparty/git.git/blame - reftable/system.h
Merge branch 'bb/iso-strict-utc'
[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"
3a60f6a2 15#include "lockfile.h"
ef8a6c62 16#include "strbuf.h"
3a60f6a2 17#include "tempfile.h"
d1cbe1e6 18#include "hash-ll.h" /* hash ID, sizes.*/
ef8a6c62
HWN
19#include "dir.h" /* remove_dir_recursively, for tests.*/
20
ef8a6c62
HWN
21int hash_size(uint32_t id);
22
23#endif