fehQlibs 26
Qlibs
Loading...
Searching...
No Matches
open.h
Go to the documentation of this file.
1#ifndef OPEN_H
2#define OPEN_H
3
10int open_read(const char *);
11int open_excl(const char *);
12int open_append(const char *);
13int open_trunc(const char *);
14int open_write(const char *);
15
16#endif
int open_write(const char *)
Definition: open.c:24
int open_read(const char *)
Definition: open.c:18
int open_trunc(const char *)
Definition: open.c:21
int open_excl(const char *)
Definition: open.c:15
int open_append(const char *)
Definition: open.c:12