aboutsummaryrefslogtreecommitdiff
path: root/libbb/xatonum.c
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2021-03-24 11:55:30 +0000
committerRon Yorston <rmy@pobox.com>2021-03-24 12:43:15 +0000
commit355a7a6c1e9626b7afe8758a6095f3cf275c52e1 (patch)
tree6dab679c15b049cab97212e0b43077132eec1fbe /libbb/xatonum.c
parent71ecc8033e6989996057b32577e71148fd544596 (diff)
parent889425812b5cda8b3394d73253cbde7355fb1115 (diff)
downloadbusybox-w32-w32_1_26_2.tar.gz
busybox-w32-w32_1_26_2.tar.bz2
busybox-w32-w32_1_26_2.zip
Merge tag '1_26_2' into w32_1_26_2w32_1_26_2
Diffstat (limited to '')
-rw-r--r--libbb/xatonum.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/libbb/xatonum.c b/libbb/xatonum.c
index 9dd5c3e7e..b63b7f54d 100644
--- a/libbb/xatonum.c
+++ b/libbb/xatonum.c
@@ -96,3 +96,22 @@ const struct suffix_mult cwbkMG_suffixes[] = {
96 /* coreutils also understands TPEZY suffixes for tera- and so on, with B suffix for decimal */ 96 /* coreutils also understands TPEZY suffixes for tera- and so on, with B suffix for decimal */
97 { "", 0 } 97 { "", 0 }
98}; 98};
99
100const struct suffix_mult kmg_i_suffixes[] = {
101 { "KiB", 1024 },
102 { "kiB", 1024 },
103 { "K", 1024 },
104 { "k", 1024 },
105 { "MiB", 1048576 },
106 { "miB", 1048576 },
107 { "M", 1048576 },
108 { "m", 1048576 },
109 { "GiB", 1073741824 },
110 { "giB", 1073741824 },
111 { "G", 1073741824 },
112 { "g", 1073741824 },
113 { "KB", 1000 },
114 { "MB", 1000000 },
115 { "GB", 1000000000 },
116 { "", 0 }
117};