2018-10-14 19:28:18 +08:00
|
|
|
/*
|
2021-03-08 18:19:04 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2018-10-14 19:28:18 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
*/
|
2022-01-08 23:29:41 +08:00
|
|
|
|
2021-09-12 03:34:59 +08:00
|
|
|
#ifndef __SYS_STATFS_H__
|
|
|
|
#define __SYS_STATFS_H__
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2021-09-12 03:34:59 +08:00
|
|
|
#include <stddef.h>
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
struct statfs
|
|
|
|
{
|
2021-09-12 03:34:59 +08:00
|
|
|
size_t f_bsize; /* block size */
|
|
|
|
size_t f_blocks; /* total data blocks in file system */
|
|
|
|
size_t f_bfree; /* free blocks in file system */
|
2013-01-08 22:40:58 +08:00
|
|
|
};
|
|
|
|
|
2021-09-12 03:34:59 +08:00
|
|
|
int statfs(const char *path, struct statfs *buf);
|
|
|
|
int fstatfs(int fd, struct statfs *buf);
|
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
#endif
|