| 444 | } |
| 445 | |
| 446 | void UArray_unquote(UArray *self) { |
| 447 | UArray q = UArray_stackAllocedWithCString_("\""); |
| 448 | |
| 449 | if (UArray_beginsWith_(self, &q) && UArray_endsWith_(self, &q)) { |
| 450 | UArray_removeFirst(self); |
| 451 | UArray_removeLast(self); |
| 452 | UArray_changed(self); |
| 453 | } |
| 454 | } |
| 455 | |
| 456 | void UArray_translate(UArray *self, UArray *fromChars, UArray *toChars) { |
| 457 | double max = 4096; |
no test coverage detected