1 2 3 4 5 6 7 8 9 10
/* ISC license. */ #include <sys/types.h> #include <skalibs/functypes.h> #include <skalibs/allreadwrite.h> size_t allwrite (int fd, char const *buf, size_t len) { return allreadwrite((iofunc_t_ref)&fd_write, fd, (char *)buf, len) ; }