| 65 | } |
| 66 | |
| 67 | UArray *UArray_lastPathComponent(const UArray *self) { |
| 68 | long pos = UArray_findLastPathComponent(self); |
| 69 | return UArray_range(self, pos, self->size - pos); |
| 70 | } |
| 71 | |
| 72 | long UArray_findPathExtension(UArray *self) { |
| 73 | UArray dot = UArray_stackAllocedWithCString_(IO_PATH_SEPARATOR_DOT); |
no test coverage detected