| 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); } |
| 1376 | |
| 1377 | #define WRAP_VERSION_FUNC(name, function) WRAPN(name, DFHack::Version::function) |
nothing calls this directly
no test coverage detected