| 67 | } |
| 68 | |
| 69 | static struct cbfile *nextfile(struct cbfile *f) |
| 70 | { |
| 71 | f = (struct cbfile *)((u8 *)f + ALIGN_UP(ntohl(f->len) + ntohl(f->offset), |
| 72 | ntohl(header->align))); |
| 73 | return getfile(f); |
| 74 | } |
| 75 | |
| 76 | static struct cbfile *findfile(const char *filename) |
| 77 | { |
no test coverage detected