ucspi-ssl  0.99e
TLS encryption for IPv6 communication
open.h
Go to the documentation of this file.
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
int open_write(const char *)
int open_trunc(const char *)
Definition: open_trunc.c:7
int open_excl(const char *)
int open_read(const char *)
Definition: open_read.c:7
int open_append(const char *)
Definition: open_append.c:7