MCPcopy Create free account
hub / github.com/comaps/comaps / Ge0Parser

Method Ge0Parser

libs/ge0/parser.cpp:16–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14namespace ge0
15{
16Ge0Parser::Ge0Parser()
17{
18 for (size_t i = 0; i < 256; ++i)
19 m_base64ReverseCharTable[i] = 255;
20 for (uint8_t i = 0; i < 64; ++i)
21 {
22 char c = Base64Char(i);
23 m_base64ReverseCharTable[static_cast<uint8_t>(c)] = i;
24 }
25}
26
27bool Ge0Parser::Parse(std::string const & url, Result & result)
28{

Callers

nothing calls this directly

Calls 1

Base64CharFunction · 0.85

Tested by

no test coverage detected