| 56 | } |
| 57 | |
| 58 | BASEKIT_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 | |
| 66 | void UArray_replaceAnyCase_with_(UArray *self, const UArray *a1, |
| 67 | const UArray *a2) { |
no test coverage detected