mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-02 20:08:21 +08:00
11 lines
203 B
C
11 lines
203 B
C
#ifndef OPEN_H
|
|
#define OPEN_H
|
|
|
|
extern int open_read(char *);
|
|
extern int open_excl(char *);
|
|
extern int open_append(char *);
|
|
extern int open_trunc(char *);
|
|
extern int open_write(char *);
|
|
|
|
#endif
|