Arduino Posix Filesystems
Loading...
Searching...
No Matches
fs_fcntl.h
1#pragma once
2
3#define O_ACCMODE 0003
4#define O_RDONLY 00
5#define O_WRONLY 01
6#define O_RDWR 02
7#define O_CREAT 0100 /* not fcntl */
8#define O_EXCL 0200 /* not fcntl */
9#define O_NOCTTY 0400 /* not fcntl */
10#define O_TRUNC 01000 /* not fcntl */
11#define O_APPEND 02000
12#define O_NONBLOCK 04000
13#define O_NDELAY O_NONBLOCK
14#define O_SYNC 010000
15#define O_FSYNC O_SYNC
16#define O_ASYNC 020000
17