Integrate MIME::Base64 2.16 from CPAN. (Do we really want the
[p5sagit/p5-mst-13.2.git] / ext / MIME / Base64 / decode-qp
1 #!/usr/bin/perl
2
3 use MIME::QuotedPrint qw(decode_qp);
4
5 while (<>) {
6     print decode_qp($_);
7 }
8