micro-utils/libmu/human.c

25 lines
448 B
C
Raw Normal View History

2024-07-09 19:33:45 +00:00
#include "human.h"
2024-07-01 10:23:00 +00:00
2024-07-09 19:54:12 +00:00
char mu_hs_buf[MU_HUMAN_BUF_SIZE + 1];
2024-07-09 19:33:45 +00:00
char *mu_humansize(off_t n, off_t block) {
2024-07-01 10:23:00 +00:00
memset(mu_hs_buf, '\0', sizeof(mu_hs_buf));
char *postfixes = "BKMGTPE";
double size = n;
size_t i;
for (i = 0; i < strlen(postfixes) && size >= block; i++)
size /= block;
if (i)
snprintf(mu_hs_buf, sizeof(mu_hs_buf), "%.1f%c", size, postfixes[i]);
else
snprintf(mu_hs_buf, sizeof(mu_hs_buf), "%ju", n);
return mu_hs_buf;
}