aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/pl_function.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libtests/pl_function.cc')
-rw-r--r--libtests/pl_function.cc16
1 files changed, 7 insertions, 9 deletions
diff --git a/libtests/pl_function.cc b/libtests/pl_function.cc
index 960ad5cb..101ec02e 100644
--- a/libtests/pl_function.cc
+++ b/libtests/pl_function.cc
@@ -1,26 +1,24 @@
#include <qpdf/assert_test.h>
+#include <qpdf/Pl_Base64.hh>
#include <qpdf/Pl_Function.hh>
#include <qpdf/Pl_String.hh>
-#include <qpdf/Pl_Base64.hh>
#include <iostream>
int
main(int argc, char* argv[])
{
- Pl_Function p1(
- "p1", nullptr, [](unsigned char const* data, size_t len) {
- std::cout << "p1: " << len << ": " << data << std::endl;
- });
+ Pl_Function p1("p1", nullptr, [](unsigned char const* data, size_t len) {
+ std::cout << "p1: " << len << ": " << data << std::endl;
+ });
p1.write(reinterpret_cast<unsigned char const*>("potato"), 6);
std::string s;
Pl_String ps("string", nullptr, s);
Pl_Base64 b("base64", &ps, Pl_Base64::a_encode);
- Pl_Function p2(
- "p2", &b, [](unsigned char const* data, size_t len) {
- std::cout << "p2: " << len << ": " << data << std::endl;
- });
+ Pl_Function p2("p2", &b, [](unsigned char const* data, size_t len) {
+ std::cout << "p2: " << len << ": " << data << std::endl;
+ });
p2.write(reinterpret_cast<unsigned char const*>("salad"), 5);
p2.finish();
assert(s == "c2FsYWQ=");