blob: 8985ac3d7853781e36d1ab8ebfde56ce3c24286e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef CCACHE_COMPOPT_H
#define CCACHE_COMPOPT_H
#include "system.h"
bool compopt_short(bool (*fn)(const char *option), const char *option);
bool compopt_affects_cpp(const char *option);
bool compopt_too_hard(const char *option);
bool compopt_too_hard_for_direct_mode(const char *option);
bool compopt_takes_path(const char *option);
bool compopt_takes_arg(const char *option);
#endif /* CCACHE_COMPOPT_H */
|