diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-04-03 08:17:38 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-04-03 08:17:38 +0000 |
commit | d57675fc67455faf7c68d4003a1ce884779e2c7c (patch) | |
tree | 3becd19ea8eda8827e45bf9e627d580fe614be64 /util/suffix.h | |
parent | Releasing debian version 2.4-1. (diff) | |
download | nvme-cli-d57675fc67455faf7c68d4003a1ce884779e2c7c.tar.xz nvme-cli-d57675fc67455faf7c68d4003a1ce884779e2c7c.zip |
Merging upstream version 2.4+really2.3.
This reverts commit f42531334c05b7f49ae43c0a27e347a487fb2667.
Diffstat (limited to 'util/suffix.h')
-rw-r--r-- | util/suffix.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/suffix.h b/util/suffix.h index 5ea58f4..b367ce4 100644 --- a/util/suffix.h +++ b/util/suffix.h @@ -36,10 +36,10 @@ #include <stdbool.h> const char *suffix_si_get(double *value); -int suffix_si_parse(const char *str, char **endptr, uint64_t *val); +uint64_t suffix_si_parse(const char *value, bool *suffixed); const char *suffix_si_get_ld(long double *value); const char *suffix_binary_get(long long *value); const char *suffix_dbinary_get(double *value); -int suffix_binary_parse(const char *str, char **endptr, uint64_t *val); +uint64_t suffix_binary_parse(const char *value); #endif |