Function internalIdentifier [src]
Prototype
pub fn internalIdentifier(self: CSourceLanguage) []const u8
Parameters
self: CSourceLanguage
Source
pub fn internalIdentifier(self: CSourceLanguage) []const u8 {
return switch (self) {
.c => "c",
.cpp => "c++",
.objective_c => "objective-c",
.objective_cpp => "objective-c++",
.assembly => "assembler",
.assembly_with_preprocessor => "assembler-with-cpp",
};
}