| 323 | // escape and quote |
| 324 | |
| 325 | void UArray_swapWith_(UArray *self, UArray *other) { |
| 326 | UArray b; |
| 327 | memcpy(&b, other, sizeof(UArray)); |
| 328 | memcpy(other, self, sizeof(UArray)); |
| 329 | memcpy(self, &b, sizeof(UArray)); |
| 330 | UArray_changed(self); |
| 331 | } |
| 332 | |
| 333 | void UArray_escape(UArray *self) { |
| 334 | UArray *out = UArray_new(); |
no test coverage detected