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

Function UArray_appendCString_

libs/basekit/source/UArray_string.c:23–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21}
22
23void 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
28void UArray_prepend_(UArray *self, const UArray *other) {
29 UArray_at_putAll_(self, 0, other);

Callers 8

UArray_escapeFunction · 0.85
UArray_asBitsFunction · 0.85
UArray_fromVargs_Function · 0.85
UArray_setCString_Function · 0.85
IoBlock_justCodeFunction · 0.85

Calls 1

UArray_appendBytes_size_Function · 0.85

Tested by

no test coverage detected