Changes between Version 150 and Version 151 of library_stdio


Ignore:
Timestamp:
Mar 17, 2016, 1:39:36 PM (8 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • library_stdio

    v150 v151  
    235235The semantic is similar to the UNIX open() function, but the UNIX access rights are not supported.
    236236The following flags are supported, and can be ''ored'' to define the <flags> argument:
    237  * O_RDONLY : The file can only be accessed as read-only. Default is read/write.
     237 * O_RDONLY : The file can only be accessed for read.
     238 * O_WRONLY : The file can only be accessed for write.
     239 * O_RDWR : The file can be accessed for read or write. This the default value.
    238240 * O_CREATE : The file is created if it does not exist on disk. Default is no creation.
    239241 * O_TRUNC : All clusters allocated to the file are released, and the file size is reset to 0.