(w io.Writer, numSections int)
| 535 | } |
| 536 | |
| 537 | func writeSectionHeader(w io.Writer, numSections int) error { |
| 538 | enc := cbor.NewEncoder(w) |
| 539 | return enc.EncodeArrayHeader(numSections) |
| 540 | } |
| 541 | |
| 542 | func writeFooter(w io.Writer, offset int) error { |
| 543 | const footerLength = 9 |
no test coverage detected