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