Changes between Version 87 and Version 88 of library_stdio


Ignore:
Timestamp:
Jun 16, 2015, 5:15:05 PM (9 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • library_stdio

    v87 v88  
    177177The semantic is similar to the UNIX open() function, but the UNIX oflags and the UNIX access rights are not supported.
    178178The two following flags can be ''ored'' in the '''flags''' argument:
    179  * O_RDONLY (0x01) : the file will accessed as read-only. Default value is read/write.
    180  * O_CREATE  (0x20) : the file will be created if it does not exist on the file system. Default value is no creation.
     179 * O_RDONLY (0x01) : file accessed as read-only. Default is read/write.
     180 * O_CREATE  (0x20) : file created if it does not exist on disk. Default is no creation.
    181181If the specified directory does not exist, an error is returned.
    182182