| 21 | } |
| 22 | |
| 23 | void UArray_appendCString_(UArray *self, const char *s) { |
| 24 | /* TODO: pass in the length of the string since it's usually known. */ |
| 25 | UArray_appendBytes_size_(self, (const uint8_t *)s, strlen(s)); |
| 26 | } |
| 27 | |
| 28 | void UArray_prepend_(UArray *self, const UArray *other) { |
| 29 | UArray_at_putAll_(self, 0, other); |
no test coverage detected