@@ -39,15 +39,15 @@ * @brief Seeks to the specified absolute offset. * * @param offset The offset in bytes * @param whence From where to seek.@n * Possible values are: - * Value | Description - * ---------|--------------------------------------- - * SEEK_SET | Seek to the specified byte - * SEEK_CUR | Seek to the current location + offset - * SEEK_END | Seek to the end of the stream + offset + * Value | Description + * -----------|--------------------------------------- + * `SEEK_SET` | Seek to the specified byte + * `SEEK_CUR` | Seek to the current location + offset + * `SEEK_END` | Seek to the end of the stream + offset * @return The new offset form the start of the file */ - (off_t)seekToOffset: (off_t)offset whence: (int)whence; @@ -60,15 +60,15 @@ * subclassing! * * @param offset The offset to seek to * @param whence From where to seek.@n * Possible values are: - * Value | Description - * ---------|--------------------------------------- - * SEEK_SET | Seek to the specified byte - * SEEK_CUR | Seek to the current location + offset - * SEEK_END | Seek to the end of the stream + offset + * Value | Description + * -----------|--------------------------------------- + * `SEEK_SET` | Seek to the specified byte + * `SEEK_CUR` | Seek to the current location + offset + * `SEEK_END` | Seek to the end of the stream + offset * @return The new offset from the start of the file */ - (off_t)lowlevelSeekToOffset: (off_t)offset whence: (int)whence; @end