| 1601 | } |
| 1602 | |
| 1603 | void cbfs_print_directory(struct cbfs_image *image) |
| 1604 | { |
| 1605 | if (cbfs_is_legacy_cbfs(image)) |
| 1606 | cbfs_print_header_info(image); |
| 1607 | printf("%-30s %-10s %-12s Size Comp\n", "Name", "Offset", "Type"); |
| 1608 | cbfs_legacy_walk(image, cbfs_print_entry_info, NULL); |
| 1609 | } |
| 1610 | |
| 1611 | void cbfs_print_parseable_directory(struct cbfs_image *image) |
| 1612 | { |
no test coverage detected