diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-08-25 23:12:11 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-08-25 23:12:11 +0000 |
commit | 6363f5c76f236303c13e714d451ccd2b1208ebca (patch) | |
tree | 2e881b4c870fc1d20f5d684d9952c72f3ddc9574 /src/libstddjb/filecopy_unsafe.c | |
parent | 65d71ab4b780a5d18a8146eb4567eb8a9105f4fe (diff) | |
download | skalibs-6363f5c76f236303c13e714d451ccd2b1208ebca.tar.xz |
Add touch, filecopy_unsafe, filecopy_suffix
Diffstat (limited to 'src/libstddjb/filecopy_unsafe.c')
-rw-r--r-- | src/libstddjb/filecopy_unsafe.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/libstddjb/filecopy_unsafe.c b/src/libstddjb/filecopy_unsafe.c new file mode 100644 index 0000000..b60c783 --- /dev/null +++ b/src/libstddjb/filecopy_unsafe.c @@ -0,0 +1,32 @@ +/* ISC license. */ + +#include <errno.h> +#include <fcntl.h> +#include <skalibs/djbunix.h> + +int filecopy_unsafe (char const *src, char const *dst, unsigned int mode) +{ + int d ; + int s = open2(src, O_RDONLY) ; + if (s < 0) return 0 ; + d = open3(dst, O_WRONLY | O_CREAT | O_TRUNC, mode) ; + if (d < 0) + { + register int e = errno ; + fd_close(s) ; + errno = e ; + return 0 ; + } + if (fd_cat(s, d) < 0) + { + register int e = errno ; + fd_close(d) ; + fd_close(s) ; + errno = e ; + return 0 ; + } + fd_close(d) ; + fd_close(s) ; + return 1 ; +} + |