| 437 | } |
| 438 | |
| 439 | void UArray_quote(UArray *self) { |
| 440 | UArray q = UArray_stackAllocedWithCString_("\""); |
| 441 | UArray_prepend_(self, &q); |
| 442 | UArray_append_(self, &q); |
| 443 | UArray_changed(self); |
| 444 | } |
| 445 | |
| 446 | void UArray_unquote(UArray *self) { |
| 447 | UArray q = UArray_stackAllocedWithCString_("\""); |
nothing calls this directly
no test coverage detected