Tenok
A Linux-like Real-Time Operating System for Robotics and Internet of Things
fcntl.h
Go to the documentation of this file.
1 
4 #ifndef __FCNTL_H__
5 #define __FCNTL_H__
6 
7 #define O_RDONLY 0
8 #define O_WRONLY 1
9 #define O_RDWR 2
10 #define O_CREAT 0x0200
11 #define O_EXCL 0x0800
12 #define O_NONBLOCK 00004000
13 
21 int open(const char *pathname, int flags);
22 
23 #endif
int open(const char *pathname, int flags)
Open the file specified by the pathname.
Definition: file.c:15