blob: 9b9efcc2aaad732ed4e0ff976a89379fac40934b [file] [log] [blame]
Olivier Deprez157378f2022-04-04 15:47:50 +02001#ifndef _PERF_PARSE_SUBLEVEL_OPTIONS_H
2#define _PERF_PARSE_SUBLEVEL_OPTIONS_H
3
4struct sublevel_option {
5 const char *name;
6 int *value_ptr;
7};
8
9int perf_parse_sublevel_options(const char *str, struct sublevel_option *opts);
10
11#endif