| 27 | } |
| 28 | |
| 29 | std::string base64_decode(const std::string& text) { |
| 30 | // convert back to binary |
| 31 | std::string dest; |
| 32 | |
| 33 | base64::decode(text.begin(), text.end(), std::back_inserter(dest)); |
| 34 | return dest; |
| 35 | } |
| 36 | |
| 37 | const char* bzu_GetTeamName(bz_eTeamType team) { |
| 38 | switch (team) { |
no test coverage detected