| 143 | offsetof(struct zip64_dir_trailer_locator, _end) |
| 144 | |
| 145 | static void copy_le16(unsigned char *dest, unsigned int n) |
| 146 | { |
| 147 | dest[0] = 0xff & n; |
| 148 | dest[1] = 0xff & (n >> 010); |
| 149 | } |
| 150 | |
| 151 | static void copy_le32(unsigned char *dest, unsigned int n) |
| 152 | { |
no outgoing calls
no test coverage detected