system/FileDescriptor: add method Skip()

This commit is contained in:
Max Kellermann 2016-02-19 18:18:12 +01:00
parent a5e8269c72
commit 8e0e4d7c04

View File

@ -146,6 +146,10 @@ public:
return lseek(Get(), offset, SEEK_SET);
}
off_t Skip(off_t offset) {
return lseek(Get(), offset, SEEK_CUR);
}
gcc_pure
off_t Tell() const {
return lseek(Get(), 0, SEEK_CUR);