123456789101112131415161718192021222324252627 |
- #pragma once
- #include <libc/sys/types.h>
- struct mstat_t
- {
- uint64_t total;
- uint64_t used;
- uint64_t free;
- uint64_t shared;
- uint64_t cache_used;
- uint64_t cache_free;
- uint64_t available;
- };
- int mkdir(const char *path, mode_t mode);
- int mstat(struct mstat_t* stat);
|