subcmd-config.h 330 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __PERF_SUBCMD_CONFIG_H
  3. #define __PERF_SUBCMD_CONFIG_H
  4. struct subcmd_config {
  5. const char *exec_name;
  6. const char *prefix;
  7. const char *exec_path;
  8. const char *exec_path_env;
  9. const char *pager_env;
  10. };
  11. extern struct subcmd_config subcmd_config;
  12. #endif /* __PERF_SUBCMD_CONFIG_H */