| 75 | } |
| 76 | |
| 77 | void UArray_removePathExtension(UArray *self) { |
| 78 | long pos = UArray_findPathExtension(self); |
| 79 | |
| 80 | if (pos != -1) { |
| 81 | UArray_setSize_(self, pos); |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | UArray *UArray_pathExtension(UArray *self) { |
| 86 | long pos = UArray_findPathExtension(self); |
nothing calls this directly
no test coverage detected