mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-10-05 19:18:01 +08:00
11 lines
193 B
C
11 lines
193 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
|