(LPSZ from, LPSZ to)
| 120 | } |
| 121 | |
| 122 | public static int copy(LPSZ from, LPSZ to) { |
| 123 | return copy(from.ptr(), to.ptr()); |
| 124 | } |
| 125 | |
| 126 | public static long copyData(long srcFd, long destFd, long offsetSrc, long length) { |
| 127 | return copyData(toOsFd(srcFd), toOsFd(destFd), offsetSrc, length); |