blob: b04ae3f50da52a1827648c17b0dd24151bd89034 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2$_ = join("", <>);
3
4s/(0x[0-9a-f]{2})/sprintf("0x%.2x",ord(pack("b8",unpack("B8",chr(hex($1))))))/gei;
5
6s/^ / .byte /gm;
7s/[,};]+$//gm;
8s/^static.*//gm;
9
10print $_;