Changes between Version 87 and Version 88 of library_stdio
- Timestamp:
- Jun 16, 2015, 5:15:05 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
library_stdio
v87 v88 177 177 The semantic is similar to the UNIX open() function, but the UNIX oflags and the UNIX access rights are not supported. 178 178 The two following flags can be ''ored'' in the '''flags''' argument: 179 * O_RDONLY (0x01) : the file will accessed as read-only. Default valueis read/write.180 * O_CREATE (0x20) : the file will be created if it does not exist on the file system. Default valueis 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. 181 181 If the specified directory does not exist, an error is returned. 182 182