blob: 6f674d173cde797c5526031c9b62e4b22f96f781 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef CCACHE_LANGUAGE_H
#define CCACHE_LANGUAGE_H
const char *language_for_file(const char *fname);
const char *p_language_for_language(const char *language);
const char *extension_for_language(const char *language);
bool language_is_supported(const char *language);
bool language_is_preprocessed(const char *language);
#endif /* CCACHE_LANGUAGE_H */
|