1 #ifndef UNITS_H 2 #define UNITS_H 3 4 char *format_binary(long double); 5 char *format_metric(long double); 6 char *format_time_us(long double); 7 char *format_time_s(long double); 8 9 int scan_metric(char *, uint64_t *); 10 int scan_time(char *, uint64_t *); 11 12 #endif /* UNITS_H */