aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2020-09-09 03:11:37 -0500
committerRob Landley <rob@landley.net>2020-09-09 03:11:37 -0500
commit54965cadfe8f1aef663600cb07d3edbb0acf8769 (patch)
tree3854cd6fd7f13efcaca953bee4c5dc40ecbbc4b8 /lib
parent6dedeb79511b4bbdcd2e1fbac10e2aa5d74930c5 (diff)
downloadtoybox-54965cadfe8f1aef663600cb07d3edbb0acf8769.tar.gz
Attempt internationalization of HR_COMMAS, 9 digit memory sizes for top,
and use the comma format when selected even if <3 digits (no 0.0M)
Diffstat (limited to 'lib')
-rw-r--r--lib/lib.c20
1 files changed, 16 insertions, 4 deletions
diff --git a/lib/lib.c b/lib/lib.c
index 28c7e9c4..319b6af4 100644
--- a/lib/lib.c
+++ b/lib/lib.c
@@ -1151,6 +1151,7 @@ match:
int human_readable_long(char *buf, unsigned long long num, int dgt, int unit,
int style)
{
+ static char cc, dot;
unsigned long long snap = 0;
int len, commas = 0, off, ii, divisor = (style&HR_1000) ? 1000 : 1024;
@@ -1160,18 +1161,29 @@ int human_readable_long(char *buf, unsigned long long num, int dgt, int unit,
// Zettabyte and Yottabyte in case "unit" starts above zero.
for (;;unit++) {
len = snprintf(0, 0, "%llu", num);
- if (style&HR_COMMAS) commas = (len>4)*((len-1)/3);
+ if (style&HR_COMMAS) commas = (len-1)/3;
if (len<=(dgt-commas)) break;
num = ((snap = num)+(divisor/2))/divisor;
}
if (CFG_TOYBOX_DEBUG && unit>8) return sprintf(buf, "%.*s", dgt, "TILT");
+ if (!dot) {
+ if (CFG_TOYBOX_I18N) {
+ struct lconv *ll;
+
+ setlocale(LC_NUMERIC, "");
+ ll = localeconv();
+ dot = *ll->decimal_point ? : '.';
+ cc = *ll->thousands_sep ? : ',';
+ } else cc = ',', dot = '.';
+ }
+
len = sprintf(buf, "%llu", num);
- if (commas) {
+ if (style&HR_COMMAS) {
for (ii = 0; ii<commas; ii++) {
off = len-3*(ii+1);
memmove(buf+off+commas-ii, buf+off, 3);
- buf[off+commas-ii-1] = ',';
+ buf[off+commas-ii-1] = cc;
}
len += commas;
} else if (unit && len == 1) {
@@ -1180,7 +1192,7 @@ int human_readable_long(char *buf, unsigned long long num, int dgt, int unit,
snap -= num*divisor;
snap = ((snap*100)+50)/divisor;
snap /= 10;
- len = sprintf(buf, "%llu.%llu", num, snap);
+ len = sprintf(buf, "%llu%c%llu", num, dot, snap);
}
if (style & HR_SPACE) buf[len++] = ' ';
if (unit) {