summaryrefslogtreecommitdiff
path: root/src/libstddjb/filecopy_suffix.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2015-08-25 23:12:11 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2015-08-25 23:12:11 +0000
commit6363f5c76f236303c13e714d451ccd2b1208ebca (patch)
tree2e881b4c870fc1d20f5d684d9952c72f3ddc9574 /src/libstddjb/filecopy_suffix.c
parent65d71ab4b780a5d18a8146eb4567eb8a9105f4fe (diff)
downloadskalibs-6363f5c76f236303c13e714d451ccd2b1208ebca.tar.xz
Add touch, filecopy_unsafe, filecopy_suffix
Diffstat (limited to 'src/libstddjb/filecopy_suffix.c')
-rw-r--r--src/libstddjb/filecopy_suffix.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/libstddjb/filecopy_suffix.c b/src/libstddjb/filecopy_suffix.c
new file mode 100644
index 0000000..70673ea
--- /dev/null
+++ b/src/libstddjb/filecopy_suffix.c
@@ -0,0 +1,25 @@
+/* ISC license. */
+
+#include <errno.h>
+#include <unistd.h>
+#include <stdio.h>
+#include <skalibs/bytestr.h>
+#include <skalibs/djbunix.h>
+
+int filecopy_suffix (char const *src, char const *dst, unsigned int mode, char const *suffix)
+{
+ unsigned int dstlen = str_len(dst) ;
+ unsigned int suffixlen = str_len(suffix) ;
+ char tmp[dstlen + suffixlen + 1] ;
+ byte_copy(tmp, dstlen, dst) ;
+ byte_copy(tmp + dstlen, suffixlen + 1, suffix) ;
+ if (!filecopy_unsafe(src, tmp, mode)) return 0 ;
+ if (rename(tmp, dst) < 0)
+ {
+ register int e = errno ;
+ unlink(tmp) ;
+ errno = e ;
+ return 0 ;
+ }
+ return 1 ;
+}