mirror of
https://github.com/opnsense/src.git
synced 2026-04-03 08:25:16 -04:00
27 lines
485 B
C
27 lines
485 B
C
/* bytfre.c
|
|
Get the number of bytes free on a file system. */
|
|
|
|
#include "uucp.h"
|
|
|
|
#include "system.h"
|
|
#include "sysdep.h"
|
|
#include "fsusg.h"
|
|
|
|
#if HAVE_LIMITS_H
|
|
#include <limits.h>
|
|
#else
|
|
#define LONG_MAX 2147483647
|
|
#endif
|
|
|
|
long
|
|
csysdep_bytes_free (zfile)
|
|
const char *zfile;
|
|
{
|
|
struct fs_usage s;
|
|
|
|
if (get_fs_usage ((char *) zfile, (char *) NULL, &s) < 0)
|
|
return -1;
|
|
if (s.fsu_bavail >= LONG_MAX / (long) 512)
|
|
return LONG_MAX;
|
|
return s.fsu_bavail * (long) 512;
|
|
}
|