swh:1:snp:102b88a84830a6000187157d40b28a5b77e43cda
Raw File
Tip revision: f028880581b752ded235c457e18c8efb26d959c7 authored by hudson@kremvax on 10 March 2010, 01:54:34 UTC
Started finding symbols in 2.0.3 dump
Tip revision: f028880
string-dump
#!/usr/bin/perl
use warnings;
use strict;

while(<>)
{
	my ($val) = /:\s*([0-9A-Fa-f]+)\s*/ or next;
	$val = hex $val;
	while( $val )
	{
		print chr( $val & 0xFF );
		$val >>= 8;
	}
}

print "\n";
back to top