diff options
author | Jeongho Hwang <jbera.hwang@samsung.com> | 2012-09-19 13:15:55 +0900 |
---|---|---|
committer | Jeongho Hwang <jbera.hwang@samsung.com> | 2012-09-19 13:15:55 +0900 |
commit | c8b261d409e1cfebcc26539c58530479c531732f (patch) | |
tree | bd3365fbecb87b018ceca8bc8ef24b5db63e2ae6 /compopt.h | |
parent | 3c73bcec3308588a22bf7596adaa990942215db4 (diff) | |
download | ccache-c8b261d409e1cfebcc26539c58530479c531732f.tar.gz ccache-c8b261d409e1cfebcc26539c58530479c531732f.tar.bz2 ccache-c8b261d409e1cfebcc26539c58530479c531732f.zip |
Tizen 2.0 AlphaHEADtizen_2.3.1_releasesubmit/tizen_2.3.1/20150915.0950272.0_alphatizen_2.3.1master2.0alpha
Signed-off-by: Jeongho Hwang <jbera.hwang@samsung.com>
Diffstat (limited to 'compopt.h')
-rw-r--r-- | compopt.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/compopt.h b/compopt.h new file mode 100644 index 0000000..8985ac3 --- /dev/null +++ b/compopt.h @@ -0,0 +1,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 */ |