diff options
Diffstat (limited to 'src/safe_rw.h')
| -rw-r--r-- | src/safe_rw.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/safe_rw.h b/src/safe_rw.h new file mode 100644 index 0000000..31f4aa6 --- /dev/null +++ b/src/safe_rw.h @@ -0,0 +1,15 @@ +#ifndef safe_rw_H +#define safe_rw_H + +#include <stdlib.h> +#include <sys/types.h> + +ssize_t safe_write(const int fd, const void* const buf_, size_t count, + const int timeout); + +ssize_t safe_read(const int fd, void* const buf_, size_t count); + +ssize_t safe_read_partial(const int fd, void* const buf_, + const size_t max_count); + +#endif |