Changes between Version 141 and Version 142 of library_stdio


Ignore:
Timestamp:
Dec 15, 2015, 4:09:47 PM (9 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • library_stdio

    v141 v142  
    289289It repositions the offset in the file descriptor "fd_id", according to the "offset" and "whence" arguments.
    290290The 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
    293294
    294295Returns new offset value (bytes) if success.