| 348 | } |
| 349 | |
| 350 | UArray *UArray_newWithCString_(const char *s) { |
| 351 | return UArray_newWithData_type_size_copy_((uint8_t *)s, CTYPE_uint8_t, |
| 352 | strlen(s), 1); |
| 353 | } |
| 354 | |
| 355 | void UArray_empty(UArray *self) { UArray_setSize_(self, 0); } |
| 356 |
no test coverage detected