MCPcopy Create free account
hub / github.com/DFHack/dfhack / toUpper_cp437

Function toUpper_cp437

library/MiscUtils.cpp:286–292  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

284}
285
286std::string toUpper_cp437(const std::string &str)
287{
288 std::string rv(str.size(),' ');
289 for (unsigned i = 0; i < str.size(); ++i)
290 rv[i] = toupper_cp437(str[i]);
291 return rv;
292}
293
294std::string toLower_cp437(const std::string &str)
295{

Callers 5

console_is_utf8Function · 0.85
upperCp437Function · 0.85
get_noble_position_idFunction · 0.85
df_getplantsFunction · 0.85
seedwatch_setTargetFunction · 0.85

Calls 2

toupper_cp437Function · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected