File: language.h

package info (click to toggle)
ccache 3.1.7-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,640 kB
  • sloc: ansic: 14,353; sh: 1,641; makefile: 148; perl: 52
file content (10 lines) | stat: -rw-r--r-- 355 bytes parent folder | download | duplicates (3)
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 */