c constant

LanguageInfo const c

The information provided by linguist about the "C" language or content type.

Implementation

static const LanguageInfo c = LanguageInfo(
  name: 'C',
  type: LanguageType.programming,
  aliases: [],
  extensions: [
    '.c',
    '.cats',
    '.h',
    '.idc',
  ],
  filenames: [],
  interpreters: ['tcc'],
  linguistColor: '#555555',
  aceMode: 'c_cpp',
  codeMirrorMode: 'clike',
  codeMirrorMimeType: 'text/x-csrc',
  textMateScope: 'source.c',
);