License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / tools / perf / util / units.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
58db1d6e
ACM
2#ifndef PERF_UNIT_H
3#define PERF_UNIT_H
4
5#include <stddef.h>
6#include <linux/types.h>
7
3caeafce
ACM
8struct parse_tag {
9 char tag;
10 int mult;
11};
12
13unsigned long parse_tag_value(const char *str, struct parse_tag *tags);
14
58db1d6e
ACM
15unsigned long convert_unit(unsigned long value, char *unit);
16int unit_number__scnprintf(char *buf, size_t size, u64 n);
17
18#endif /* PERF_UNIT_H */