return NULL;
}
- return bprintf("%f",
- (float)fs.f_frsize * (float)fs.f_bavail / 1024 / 1024 / 1024);
+ return fmt_human_2(fs.f_frsize * fs.f_bavail, "B");
}
const char *
return NULL;
}
- return bprintf("%d", (int)(100 *
+ return bprintf("%d%%", (int)(100 *
(1.0f - ((float)fs.f_bavail / (float)fs.f_blocks))));
}
return NULL;
}
- return bprintf("%f",
- (float)fs.f_frsize * (float)fs.f_blocks / 1024 / 1024 / 1024);
+ return fmt_human_2(fs.f_frsize * fs.f_blocks, "B");
}
const char *
return NULL;
}
- return bprintf("%f",
- (float)fs.f_frsize * ((float)fs.f_blocks -
- (float)fs.f_bfree) / 1024 / 1024 / 1024);
+ return fmt_human_2(fs.f_frsize * (fs.f_blocks - fs.f_bfree), "B");
}