Joedb 10.4.1
The Journal-Only Embedded Database
Loading...
Searching...
No Matches
base64.h
Go to the documentation of this file.
1#ifndef joedb_base64_declared
2#define joedb_base64_declared
3
4#include <string>
5
6namespace joedb
7{
8 /// @ingroup ui
9 std::string base64_encode(std::string_view input);
10 /// @ingroup ui
11 std::string base64_decode(std::string_view input);
12}
13
14#endif
std::string base64_decode(std::string_view input)
std::string base64_encode(const std::string_view input)
Definition base64.cpp:11