3#include "dius/c_definitions.h"
17 return base | O_RDONLY;
19 return base | O_WRONLY | O_EXCL | O_CREAT;
21 return base | O_WRONLY | O_TRUNC | O_CREAT;
25 return base | O_WRONLY | O_APPEND | O_CREAT;
27 return base | O_RDWR | O_TRUNC | O_CREAT;
29 return base | O_RDWR | O_APPEND | O_CREAT;
auto open_mode_flags(OpenMode open_mode, OpenFlags flags) -> int
Definition open_mode_flags.h:7
OpenFlags
Definition sync_file.h:111
@ KeepAfterExec
Definition sync_file.h:114
@ NoControllingTerminal
Definition sync_file.h:113
OpenMode
Definition sync_file.h:109
@ Readonly
Definition sync_file.h:109
@ WriteNew
Definition sync_file.h:109
@ AppendOnly
Definition sync_file.h:109
@ AppendReadWrite
Definition sync_file.h:109
@ ReadWrite
Definition sync_file.h:109
@ WriteClobber
Definition sync_file.h:109
@ ReadWriteClobber
Definition sync_file.h:109