Merge branch 'catalan' of github.com:Softcatala/git-po
[alt-git.git] / reftable / system.h
blob18f9207dfee16accdaac46a77d13b9960aad3ca2
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 "strbuf.h"
16 #include "hash.h" /* hash ID, sizes.*/
17 #include "dir.h" /* remove_dir_recursively, for tests.*/
19 int hash_size(uint32_t id);
21 #endif