(x uint32)
| 90 | } |
| 91 | |
| 92 | func u32(x uint32) string { |
| 93 | var buf [4]byte |
| 94 | buf[0] = byte(x >> 24) |
| 95 | buf[1] = byte(x >> 16) |
| 96 | buf[2] = byte(x >> 8) |
| 97 | buf[3] = byte(x) |
| 98 | return string(buf[:]) |
| 99 | } |
| 100 | |
| 101 | func fileList(list ...uint32) string { |
| 102 | var buf []byte |