2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
14 char testfilename
[] = "RAM:__TEST__";
21 fd
= creat(testfilename
, 0777);
24 TEST((statfs(testfilename
, &buf
) != -1));
26 printf("Name:\t\t\t%s\n", buf
.f_mntonname
);
27 printf("Fundamental block size:\t%ld\n", buf
.f_fsize
);
28 printf("Optimal block size:\t%ld\n", buf
.f_bsize
);
29 printf("Number of blocks:\t%ld\n", buf
.f_blocks
);
30 printf("Free blocks:\t\t%ld\n", buf
.f_bfree
);
31 printf("Available blocks:\t%ld\n", buf
.f_bavail
);