From f9a264860c23b8381adbc0b9766e1b677a07da78 Mon Sep 17 00:00:00 2001 From: B Stack Date: Mon, 4 Jan 2021 08:08:11 -0500 Subject: add upstream 11.5 --- zen/base64.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'zen/base64.h') diff --git a/zen/base64.h b/zen/base64.h index b39a6a52..f03a1433 100644 --- a/zen/base64.h +++ b/zen/base64.h @@ -13,14 +13,14 @@ namespace zen { -//https://en.wikipedia.org/wiki/Base64 -/* -Usage: - const std::string input = "Sample text"; - std::string output; - zen::encodeBase64(input.begin(), input.end(), std::back_inserter(output)); - //output contains "U2FtcGxlIHRleHQ=" -*/ +/* https://en.wikipedia.org/wiki/Base64 + + Usage: + const std::string input = "Sample text"; + std::string output; + zen::encodeBase64(input.begin(), input.end(), std::back_inserter(output)); + //output contains "U2FtcGxlIHRleHQ=" */ + template OutputIterator encodeBase64(InputIterator first, InputIterator last, OutputIterator result); //nothrow! -- cgit