Imported Upstream version 3.7
[platform/upstream/ccache.git] / src / language.h
1 #ifndef CCACHE_LANGUAGE_H
2 #define CCACHE_LANGUAGE_H
3
4 #include <stdbool.h>
5
6 const char *language_for_file(const char *fname);
7 const char *p_language_for_language(const char *language);
8 const char *extension_for_language(const char *language);
9 bool language_is_supported(const char *language);
10 bool language_is_preprocessed(const char *language);
11
12 #endif // CCACHE_LANGUAGE_H