* Create a BYTES template entry. */
| 585 | * Create a BYTES template entry. |
| 586 | */ |
| 587 | static Entry makeBytesEntry(std::vector<uint8_t> &bytes) |
| 588 | { |
| 589 | Entry entry; |
| 590 | entry.kind = ENTRY_BYTES; |
| 591 | entry.length = (unsigned)bytes.size(); |
| 592 | entry.bytes = dupBytes(bytes); |
| 593 | return entry; |
| 594 | } |
| 595 | |
| 596 | /* |
| 597 | * Create a MACRO template entry. |
no test coverage detected