Sophie

Sophie

distrib > Mageia > 7 > i586 > by-pkgid > 491f3f980b705f20a156caccb6ba598b > files > 28

perl-XML-SAX-1.0.0-3.mga7.noarch.rpm

# $Id$

package XML::SAX::PurePerl;
use strict;

no warnings 'utf8';

sub chr_ref {
    return chr(shift);
}

if ($] >= 5.007002) {
    require Encode;
    
    Encode::define_alias( "UTF-16" => "UCS-2" );
    Encode::define_alias( "UTF-16BE" => "UCS-2" );
    Encode::define_alias( "UTF-16LE" => "ucs-2le" );
    Encode::define_alias( "UTF16LE" => "ucs-2le" );
}

1;