int statfs(char *NomUnite, struct statfs *Informations);
#include <stdio.h> #include <sys/stat.h> struct statfs *Proprietes; if (statfs("/users", &Proprietes)==-1) { ... } ...