xref: /linux/tools/perf/util/parse-sublevel-options.h (revision 01a9664e0d9f8f8d5c0c7c33be2aae1284c2fc05)
1 #ifndef _PERF_PARSE_SUBLEVEL_OPTIONS_H
2 #define _PERF_PARSE_SUBLEVEL_OPTIONS_H
3 
4 struct sublevel_option {
5 	const char *name;
6 	int *value_ptr;
7 };
8 
9 int perf_parse_sublevel_options(const char *str, struct sublevel_option *opts);
10 
11 #endif
12