summaryrefslogtreecommitdiff
path: root/language.h
blob: ebfb8bbd2a8a2ad099f112e78ddc8e9bef391d2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef CCACHE_LANGUAGE_H
#define CCACHE_LANGUAGE_H

#include <stdbool.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