| 787 | } |
| 788 | |
| 789 | void UArray_appendBytes_size_(UArray *self, const uint8_t *bytes, size_t size) { |
| 790 | UArray a = UArray_stackAllocedWithData_type_size_((uint8_t *)bytes, |
| 791 | CTYPE_uint8_t, size); |
| 792 | UArray_append_(self, &a); |
| 793 | } |
| 794 | |
| 795 | /* |
| 796 | void UArray_appendByte_(UArray *self, uint8_t byte) |
no test coverage detected