2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-01 09:50:54 +00:00
qpdf/pkg-test/qpdf-version.cc
Jay Berkenbilt 12f1eb15ca 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
2022-04-04 08:10:40 -04:00

10 lines
125 B
C++

#include <qpdf/QPDF.hh>
#include <iostream>
int
main()
{
std::cout << QPDF::QPDFVersion() << std::endl;
return 0;
}