diff options
author | Denis Vlasenko | 2007-07-27 15:30:39 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-07-27 15:30:39 +0000 |
commit | 1bab1de69866c38c3e9924d23f21a90623a0a6dc (patch) | |
tree | cabe111142bea9de4c2ca0de3ad8a9ccd7e242e5 /include | |
parent | f868963c672ffdfc4bd37670b8d74342577264b1 (diff) | |
download | busybox-1bab1de69866c38c3e9924d23f21a90623a0a6dc.zip busybox-1bab1de69866c38c3e9924d23f21a90623a0a6dc.tar.gz |
fix for suffix optimization (which was in previous commit)
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 780bd45..ddbde18 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -450,6 +450,7 @@ const char *make_human_readable_str(unsigned long long size, /* Put a string of hex bytes ("1b2e66fe"...), return advanced pointer */ char *bin2hex(char *buf, const char *cp, int count); +/* Last element is marked by mult == 0 */ struct suffix_mult { char suffix[4]; unsigned mult; |