diff options
Diffstat (limited to 'util/suffix.h')
-rw-r--r-- | util/suffix.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/suffix.h b/util/suffix.h index 4f8e041..b367ce4 100644 --- a/util/suffix.h +++ b/util/suffix.h @@ -33,8 +33,11 @@ #ifndef __ARGCONFIG_SUFFIX_H__ #include <inttypes.h> +#include <stdbool.h> const char *suffix_si_get(double *value); +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); uint64_t suffix_binary_parse(const char *value); |