| 78 | } |
| 79 | |
| 80 | std::string FormatApplicationId(const u64 app_id) { |
| 81 | std::stringstream strm; |
| 82 | strm << std::uppercase << std::setfill('0') << std::setw(16) << std::hex << app_id; |
| 83 | return strm.str(); |
| 84 | } |
| 85 | |
| 86 | std::string FormatContentId(const NcmContentId &cnt_id) { |
| 87 | char cnt_id_str[FS_MAX_PATH] = {}; |
no outgoing calls
no test coverage detected