blob: f012c224afddac0e6fa733f5a2a0bf09b2f11b5a [file] [log] [blame] [raw]
/* A part of the Native C Library for Windows NT
Copyright 2007-2015 PC GO Ld.
Copyright 2017-2026 Rivoreo
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_STATFS_H
#define _SYS_STATFS_H
#include <_mingw.h>
#include <sys/types.h>
#ifdef __cplusplus
extern "C" {
#endif
#define MFSNAMELEN 16
#define MNAMELEN 128
struct statfs {
uint64_t f_bsize;
uint64_t f_iosize;
uint64_t f_blocks;
uint64_t f_bfree;
int64_t f_bavail;
uint64_t f_files;
int64_t f_ffree;
uint64_t f_spare1[9];
uint32_t f_namemax;
uint32_t f_spare2[15];
char f_fstypename[MFSNAMELEN];
char f_mntfromname[MNAMELEN];
};
int statfs(const char *, struct statfs *);
int fstatfs(int, struct statfs *);
#ifdef __cplusplus
}
#endif
#endif