2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-09-25 11:39:06 +00:00
qpdf/libtests/ascii85.cc
Jay Berkenbilt 76bf91765e missing header files for gcc 4.3
git-svn-id: svn+q:///qpdf/trunk@607 71b93d88-0707-0410-a8cf-f5a4172ac649
2008-05-04 16:02:53 +00:00

38 lines
564 B
C++

#include <qpdf/Pl_ASCII85Decoder.hh>
#include <qpdf/Pl_StdioFile.hh>
#include <iostream>
#include <stdlib.h>
int main()
{
Pl_StdioFile out("stdout", stdout);
Pl_ASCII85Decoder decode("decode", &out);
try
{
unsigned char buf[10000];
bool done = false;
while (! done)
{
int len = read(0, buf, sizeof(buf));
if (len <= 0)
{
done = true;
}
else
{
decode.write(buf, len);
}
}
decode.finish();
}
catch (std::exception& e)
{
std::cerr << e.what() << std::endl;
exit(2);
}
return 0;
}