statvfs.h 324 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2021, Justin Mietzner <sw1tchbl4d3@sw1tchbl4d3.com>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <Kernel/API/POSIX/sys/statvfs.h>
  8. #include <sys/cdefs.h>
  9. __BEGIN_DECLS
  10. int statvfs(char const* path, struct statvfs* buf);
  11. int fstatvfs(int fd, struct statvfs* buf);
  12. __END_DECLS