aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/Pl_RC4.hh
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2022-04-02 23:14:10 +0200
committerJay Berkenbilt <ejb@ql.org>2022-04-04 14:10:40 +0200
commit12f1eb15ca3fed6310402847559a7c99d3c77847 (patch)
tree8935675b623c6f3b4914b8b44f7fa5f2816a9241 /libqpdf/qpdf/Pl_RC4.hh
parentf20fa61eb4c323eb1642c69c236b3d9a1f8b2cdb (diff)
downloadqpdf-12f1eb15ca3fed6310402847559a7c99d3c77847.tar.zst
Programmatically apply new formatting to code
Run this: for i in **/*.cc **/*.c **/*.h **/*.hh; do clang-format < $i >| $i.new && mv $i.new $i done
Diffstat (limited to 'libqpdf/qpdf/Pl_RC4.hh')
-rw-r--r--libqpdf/qpdf/Pl_RC4.hh9
1 files changed, 6 insertions, 3 deletions
diff --git a/libqpdf/qpdf/Pl_RC4.hh b/libqpdf/qpdf/Pl_RC4.hh
index 33e35d58..4154c18c 100644
--- a/libqpdf/qpdf/Pl_RC4.hh
+++ b/libqpdf/qpdf/Pl_RC4.hh
@@ -12,9 +12,12 @@ class Pl_RC4: public Pipeline
// key_len of -1 means treat key_data as a null-terminated string
QPDF_DLL
- Pl_RC4(char const* identifier, Pipeline* next,
- unsigned char const* key_data, int key_len = -1,
- size_t out_bufsize = def_bufsize);
+ Pl_RC4(
+ char const* identifier,
+ Pipeline* next,
+ unsigned char const* key_data,
+ int key_len = -1,
+ size_t out_bufsize = def_bufsize);
QPDF_DLL
virtual ~Pl_RC4();