aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qpdfjob-c-save-attachment.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qpdfjob-c-save-attachment.c')
-rw-r--r--examples/qpdfjob-c-save-attachment.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/examples/qpdfjob-c-save-attachment.c b/examples/qpdfjob-c-save-attachment.c
index c461f974..30e48127 100644
--- a/examples/qpdfjob-c-save-attachment.c
+++ b/examples/qpdfjob-c-save-attachment.c
@@ -6,10 +6,9 @@
#include <stdlib.h>
#include <string.h>
-// This example demonstrates how we can redirect where saved output
-// goes by calling the default logger's setSave method before running
-// something with QPDFJob. See qpdfjob-c-save-attachment.c for an
-// implementation that uses the C API.
+// This example demonstrates how we can redirect where saved output goes by calling the default
+// logger's setSave method before running something with QPDFJob. See qpdfjob-c-save-attachment.c
+// for an implementation that uses the C API.
static int
save_to_file(char const* data, size_t len, void* udata)
@@ -79,9 +78,8 @@ main(int argc, char* argv[])
};
outfile = do_fopen(outfilename);
- /* Use qpdflogger_set_save with a callback function to redirect
- * saved data. You can use other qpdf logger functions to capture
- * informational output, warnings, and errors.
+ /* Use qpdflogger_set_save with a callback function to redirect saved data. You can use other
+ * qpdf logger functions to capture informational output, warnings, and errors.
*/
qpdflogger_set_save(l, qpdf_log_dest_custom, save_to_file, (void*)outfile, 0);
qpdflogger_cleanup(&l);