Changes between Version 141 and Version 142 of library_stdio
- Timestamp:
- Dec 15, 2015, 4:09:47 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
library_stdio
v141 v142 289 289 It repositions the offset in the file descriptor "fd_id", according to the "offset" and "whence" arguments. 290 290 The two accepted values for the whence argument are 291 * SEEK_SET (0) : new_offset <= offset 292 * SEEK_CUR (1) : new_offset <= current_offset + offset 291 * SEEK_SET : new_offset <= offset 292 * SEEK_CUR : new_offset <= current_offset + offset 293 * SEEK_END : new_offset <= file_size + offset 293 294 294 295 Returns new offset value (bytes) if success.