uh_parser/XML/SAX/PurePerl/Reader/UnicodeExt.pm
author Dario Sestito <darios@symbian.org>
Fri, 09 Apr 2010 14:05:04 +0100
changeset 212 914d8060176c
parent 176 6d3c3db11e72
permissions -rw-r--r--
Rename missing_bld_inf_file category to cpp_exe_no_such_file_or_directory

# $Id: UnicodeExt.pm,v 1.4 2003/07/30 13:39:23 matt Exp $

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

use Encode;

sub set_raw_stream {
    my ($fh) = @_;
    binmode($fh, ":bytes");
}

sub switch_encoding_stream {
    my ($fh, $encoding) = @_;
    binmode($fh, ":encoding($encoding)");
}

sub switch_encoding_string {
    Encode::from_to($_[0], $_[1], "utf-8");
}

1;