| 28 | } |
| 29 | |
| 30 | void UArray_removeLastPathComponent(UArray *self) { |
| 31 | long pos = UArray_findLastPathComponent(self); |
| 32 | if (pos) |
| 33 | pos--; |
| 34 | UArray_setSize_(self, pos); |
| 35 | } |
| 36 | |
| 37 | void UArray_clipBeforeLastPathComponent(UArray *self) { |
| 38 | long pos = UArray_findLastPathComponent(self); |
no test coverage detected