Win32-MBCS
=======================

NAME
  Win32::MBCS - Utf8 and win32 local multi-byte string conversion

INSTALLATION

To install this module type the following:

  perl Makefile.PL
  make
  make test
  make install

SYNOPSIS
   use Win32::MBCS qw(Utf8ToLocal LocalToUtf8);
   $data = "abcd\x{4e2d}\x{6587}";
   Utf8ToLocal( $data );
   print $data;

   LocalToUtf8( $data );
   use Encode;
   print Encode::encode( "gbk", $data );

DESCRIPTION
   Convert utf8 strings to or from win32 local multi-byte string.

BUGS, REQUESTS, COMMENTS
   Please report any requests, suggestions or bugs via
   http://bookbot.sourceforge.net/
   http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Win32-MBCS

COPYRIGHT AND LICENSE
   Copyright 2003-2004 Qing-Jie Zhou <[email protected]>

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