(index ("statvfs" 0))
(def (sig (procedure "(statvfs PATH)" (id statvfs))) (p "Returns a vector of the following values for the filesystem at the path provided in the " (tt "PATH") " string.") (ul (li "(0) File system block size (" (tt "f_bsize") ")") (li "(1) Fundamental file system block size (" (tt "f_frsize") ")") (li "(2) Blocks on FS in units of f_frsize (" (tt "f_blocks") ")") (li "(3) Free blocks (" (tt "f_bfree") ")") (li "(4) Blocks available to non-root (" (tt "f_bavail") ")") (li "(5) Total inodes (" (tt "f_files") ")") (li "(6) Free inodes (" (tt "f_ffree") ")") (li "(7) Free inodes for non-root (" (tt "f_favail") ")") (li "(8) Filesystem ID (" (tt "f_fsid") ")") (li "(9) Bit mask of values (" (tt "f_flag") ")") (li "(10) Max file name length (" (tt "f_namemax") ")")) (p "For more information, see " (tt "man statvfs") " on your system."))
