1 #ifndef CCACHE_COMPOPT_H
2 #define CCACHE_COMPOPT_H
3 
4 #include "system.h"
5 
6 bool compopt_short(bool (*fn)(const char *option), const char *option);
7 bool compopt_affects_cpp(const char *option);
8 bool compopt_too_hard(const char *option);
9 bool compopt_too_hard_for_direct_mode(const char *option);
10 bool compopt_takes_path(const char *option);
11 bool compopt_takes_arg(const char *option);
12 bool compopt_takes_concat_arg(const char *option);
13 bool compopt_prefix_affects_cpp(const char *option);
14 
15 #endif // CCACHE_COMPOPT_H
16