open.h (245B)
1 /* Public domain. */ 2 3 #ifndef OPEN_H 4 #define OPEN_H 5 6 extern int open_read(const char *); 7 extern int open_excl(const char *); 8 extern int open_append(const char *); 9 extern int open_trunc(const char *); 10 extern int open_write(const char *); 11 12 #endif