/* * Copyright (c) 2021, Justin Mietzner * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include __BEGIN_DECLS int statvfs(char const* path, struct statvfs* buf); int fstatvfs(int fd, struct statvfs* buf); __END_DECLS