orotool/src/oro/base64.hpp

10 lines
149 B
C++

#pragma once
#include <string_view>
#include <vector>
namespace oro {
std::vector<char> base64_decode (std::string_view text);
} //namespace oro