summaryrefslogtreecommitdiffstats
path: root/perl-install/c/stuff.pm
blob: 459b827c75050c359092e1ab4efaad74436e9f20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package c::stuff; # $Id$

use strict;
use vars qw($VERSION @ISA);

require DynaLoader;

@ISA = qw(DynaLoader);
$VERSION = '0.01';

bootstrap c::stuff $VERSION;

sub from_utf8 { iconv($_[0], "utf-8", standard_charset()) }
sub to_utf8 { iconv($_[0], standard_charset(), "utf-8") }

1;