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

Function UArray_replaceCString_withCString_

libs/basekit/source/UArray_string.c:58–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56}
57
58BASEKIT_API void UArray_replaceCString_withCString_(UArray *self,
59 const char *s1,
60 const char *s2) {
61 UArray a1 = UArray_stackAllocedWithCString_((char *)s1);
62 UArray a2 = UArray_stackAllocedWithCString_((char *)s2);
63 UArray_replace_with_(self, &a1, &a2);
64}
65
66void UArray_replaceAnyCase_with_(UArray *self, const UArray *a1,
67 const UArray *a2) {

Callers 3

UArray_asOSPathFunction · 0.85
UArray_asUnixPathFunction · 0.85

Calls 2

UArray_replace_with_Function · 0.85

Tested by

no test coverage detected