MCPcopy Create free account
hub / github.com/IoLanguage/io / UArray_newWithCString_copy_

Function UArray_newWithCString_copy_

libs/basekit/source/UArray.c:345–348  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Calls 1

Tested by

no test coverage detected