summaryrefslogtreecommitdiffhomepage
path: root/base64.h
blob: 87d6daff4984c51bb098c6d32b8d174eccfd90b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <string>

#define EXPORT __attribute__((visibility("default")))

namespace Reichwein::Base64 {

EXPORT std::string decode64(const std::string &val);
EXPORT std::string encode64(const std::string &val);

} // namespace