NAME

Convert::UU, uuencode, uudecode - Perl module for uuencode and uudecode

SYNOPSIS

      use Convert::UU qw(uudecode uuencode);
      $encoded_string = uuencode($string,[$filename],[$mode]);
      ($string,$filename,$mode) = uudecode($string);
      $string = uudecode($string); # in scalar context

DESCRIPTION

EXPORT

Both uudecode and uuencode are in @EXPORT_OK.

AUTHOR

Andreas Koenig "ANDK@cpan.org". With code integrated that was posted to USENET from Hans Mulder and Randal L. Schwartz.

SEE ALSO

puuencode(1), puudecode(1) for examples of how to use this module.

COPYRIGHT

Copyright 1996-2003 Andreas Koenig.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

Based on code posted to comp.lang.perl by Hans Mulder and Randal L. Schwartz.