2021-10-07 20:25:00 +00:00
|
|
|
/*
|
|
|
|
Copyright 2020 Google LLC
|
|
|
|
|
|
|
|
Use of this source code is governed by a BSD-style
|
|
|
|
license that can be found in the LICENSE file or at
|
|
|
|
https://developers.google.com/open-source/licenses/bsd
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SYSTEM_H
|
|
|
|
#define SYSTEM_H
|
|
|
|
|
|
|
|
/* This header glues the reftable library to the rest of Git */
|
|
|
|
|
|
|
|
#include "git-compat-util.h"
|
|
|
|
#include "strbuf.h"
|
2023-04-22 20:17:20 +00:00
|
|
|
#include "hash-ll.h" /* hash ID, sizes.*/
|
2021-10-07 20:25:00 +00:00
|
|
|
#include "dir.h" /* remove_dir_recursively, for tests.*/
|
|
|
|
|
|
|
|
int hash_size(uint32_t id);
|
|
|
|
|
|
|
|
#endif
|