| 343 | } |
| 344 | |
| 345 | UArray *UArray_newWithCString_copy_(char *s, int copy) { |
| 346 | return UArray_newWithData_type_size_copy_(s, CTYPE_uint8_t, strlen(s), |
| 347 | copy); |
| 348 | } |
| 349 | |
| 350 | UArray *UArray_newWithCString_(const char *s) { |
| 351 | return UArray_newWithData_type_size_copy_((uint8_t *)s, CTYPE_uint8_t, |
no test coverage detected