From 3c475f5027e870b19b9227375121b3b860eafb93 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Wed, 4 Jan 2023 20:22:36 +0100 Subject: Added os.cpp and base64.cpp --- base64.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 base64.h (limited to 'base64.h') diff --git a/base64.h b/base64.h new file mode 100644 index 0000000..87d6daf --- /dev/null +++ b/base64.h @@ -0,0 +1,12 @@ +#pragma once + +#include + +#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 -- cgit v1.2.3