xref: /linux/tools/perf/util/units.h (revision 593043d35ddff8ab033546c2a89bb1d4080d03e1)
1 #ifndef PERF_UNIT_H
2 #define PERF_UNIT_H
3 
4 #include <stddef.h>
5 #include <linux/types.h>
6 
7 unsigned long convert_unit(unsigned long value, char *unit);
8 int unit_number__scnprintf(char *buf, size_t size, u64 n);
9 
10 #endif /* PERF_UNIT_H */
11