summaryrefslogtreecommitdiff
path: root/compopt.h
blob: d72639fe4d261f9a0eeb714093f679878feba581 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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);
bool compopt_takes_concat_arg(const char *option);
bool compopt_prefix_affects_cpp(const char *option);

#endif // CCACHE_COMPOPT_H