brintos

brintos / linux-shallow public Read only

0
0
Text · 232 B · 578b18e Raw
12 lines · c
1#ifndef _PERF_PARSE_SUBLEVEL_OPTIONS_H2#define _PERF_PARSE_SUBLEVEL_OPTIONS_H3 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#endif12