trans.pl 153 Bytes
Newer Older
priyank's avatar
priyank committed
1 2 3 4 5 6 7 8 9 10 11 12
sub trans
{
	
	$path=@_[0];
	$tlang=@_[1];
	$input=@_[2];
	$output=@_[3];
	
	require "$path/bin/$tlang/wx2utf.pl";
	&wx2utf($path,$input,$output);
};
1;