Home
last modified time | relevance | path

Searched refs:FixedWidthStr_LeftFill (Results 1 – 2 of 2) sorted by relevance

/dports/games/openlierox/OpenLieroX/src/common/
H A DStringUtils.cpp193 tmpLeft += FixedWidthStr_LeftFill(hex(ch), 2, '0'); in HexDump()
332 buf += FixedWidthStr_LeftFill(itoa(col.r, 16), 2, '0') + in ColToHex()
333 buf += FixedWidthStr_LeftFill(itoa(col.g, 16), 2, '0') + in ColToHex()
334 buf += FixedWidthStr_LeftFill(itoa(col.b, 16), 2, '0'); in ColToHex()
336 buf += FixedWidthStr_LeftFill(itoa(col.a, 16), 2, '0'); in ColToHex()
/dports/games/openlierox/OpenLieroX/include/
H A DStringUtils.h202 inline std::string FixedWidthStr_LeftFill(const std::string& str, size_t w, char c) { in FixedWidthStr_LeftFill() function