Given the Language, returns its Language enum spelling, for use by programs that create C declarations, e.g. "KOREAN" "UNKNOWN_LANGUAGE" if the input is invalid.
| 251 | // programs that create C declarations, e.g. "KOREAN" |
| 252 | // "UNKNOWN_LANGUAGE" if the input is invalid. |
| 253 | const char* ExtLanguageDeclaredName(const Language lang) { |
| 254 | return LanguageDeclaredName(lang); |
| 255 | } |
| 256 | |
| 257 | |
| 258 | extern const int kCloseSetSize = 10; |
nothing calls this directly
no test coverage detected