parse-sublevel-options.h 231 B

1234567891011
  1. #ifndef _PERF_PARSE_SUBLEVEL_OPTIONS_H
  2. #define _PERF_PARSE_SUBLEVEL_OPTIONS_H
  3. struct sublevel_option {
  4. const char *name;
  5. int *value_ptr;
  6. };
  7. int perf_parse_sublevel_options(const char *str, struct sublevel_option *opts);
  8. #endif