mirror of
https://github.com/reactos/ccache.git
synced 2024-11-23 11:49:41 +00:00
14 lines
412 B
C
14 lines
412 B
C
#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 */
|