| 1370 | static string upperCp437(string s) { return toUpper_cp437(s); } |
| 1371 | static string lowerCp437(string s) { return toLower_cp437(s); } |
| 1372 | static string toSearchNormalized(string s) { return to_search_normalized(s); } |
| 1373 | static string capitalizeStringWords(string s) { return capitalize_string_words(s); } |
| 1374 | static string formatInt(int64_t num) { return format_number(num); } |
| 1375 | static string formatFloat(double num) { return format_number(num); } |
nothing calls this directly
no test coverage detected