Read the next @param size bytes. */
| 309 | Read the next @param size bytes. |
| 310 | */ |
| 311 | __attribute__((unused)) static const uchar *Read(const uint32_t size, |
| 312 | const uchar **usrc) { |
| 313 | const uchar *res; |
| 314 | res = *usrc; |
| 315 | *usrc += size; |
| 316 | return res; |
| 317 | } |
| 318 | |
| 319 | /* |
| 320 | Calculate the number of used bytes in the chunk and whether this is the |