| 70 | } |
| 71 | |
| 72 | long UArray_findPathExtension(UArray *self) { |
| 73 | UArray dot = UArray_stackAllocedWithCString_(IO_PATH_SEPARATOR_DOT); |
| 74 | return UArray_rFind_(self, &dot); |
| 75 | } |
| 76 | |
| 77 | void UArray_removePathExtension(UArray *self) { |
| 78 | long pos = UArray_findPathExtension(self); |
no test coverage detected