fmt_unpack [function]

fmt_unpack( string fmt, string data )

unpacks the byte buffer data using the format fmt, returns unpacked items (possibly in an array)

print fmt_unpack( "3ld", fmt_pack( "3ld", 0, 1, 2, 3 ) ); // prints [0,1,2,3]