| /* A part of the Windows CE C Extra Library (celibc) |
| Copyright 2007-2015 PC GO Ld. |
| |
| This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
| */ |
| |
| #ifndef _SYS_STATVFS_H |
| #define _SYS_STATVFS_H |
| |
| #include <_mingw.h> |
| |
| #include <sys/types.h> |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
| |
| struct statvfs { |
| unsigned long int f_bsize; |
| unsigned long int f_frsize; |
| fsblkcnt_t f_blocks; |
| fsblkcnt_t f_bfree; |
| fsblkcnt_t f_bavail; |
| fsfilcnt_t f_files; |
| fsfilcnt_t f_ffree; |
| fsfilcnt_t f_favail; |
| unsigned long int f_fsid; |
| unsigned long int f_flag; |
| unsigned long int f_namemax; |
| |
| }; |
| |
| int statvfs(const char *, struct statvfs *); |
| |
| #ifdef __cplusplus |
| } |
| #endif |
| |
| #endif |