MCPcopy Create free account
hub / github.com/BZFlag-Dev/bzflag / base64_decode

Function base64_decode

plugins/plugin_utils/plugin_utils.cpp:29–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27}
28
29std::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
37const char* bzu_GetTeamName(bz_eTeamType team) {
38 switch (team) {

Callers 1

fillRequestMethod · 0.85

Calls 3

decodeFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected