NAME
encode_qp - Encode string using quoted-printable encoding
decode_qp - Decode quoted-printable string
SYNOPSIS
use MIME::QuotedPrint;
$encoded = encode_qp($decoded);
$decoded = decode_qp($encoded);
DESCRIPTION
This module provides functions to encode and decode strings into the Quoted-Printable encoding specified in RFC 1521 - MIME (Multipurpose Internet Mail Extensions).
Note that these routines does not change "\n"
to CRLF.
COPYRIGHT
Copyright (c) 1995 Gisle Aas. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
AUTHOR
Gisle Aas <aas@oslonett.no>