mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14 lines
193 B
Perl
14 lines
193 B
Perl
|
#!/usr/local/bin/perl -w
|
||
|
while(<STDIN>)
|
||
|
{
|
||
|
if(/^#/)
|
||
|
{
|
||
|
print $_;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
($a, $b, $c,$d) = /^(....)(.)(..)(.*)$/;
|
||
|
print "0x" . $c . $b . "0x" . $a . $d . "\n";
|
||
|
}
|
||
|
}
|