MCPcopy Create free account
hub / github.com/XorTroll/uLaunch / FormatProgramId

Function FormatProgramId

libs/uCommon/source/ul/util/util_String.cpp:6–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4namespace ul::util {
5
6 std::string FormatProgramId(const u64 program_id) {
7 std::stringstream strm;
8 strm << std::uppercase << std::setfill('0') << std::setw(16) << std::hex << program_id;
9 return strm.str();
10 }
11
12 std::string FormatAccount(const AccountUid value) {
13 auto bytes_v = reinterpret_cast<const u8*>(value.uid);

Callers 4

CacheApplicationIconFunction · 0.85
LoadSettingsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected