blob: a6410c16ee4361278e1009c8b5d3900ec1d097f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* ISC license. */
#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) goto errs ;
if (fd_cat(s, d) < 0) goto errd ;
fd_close(d) ;
fd_close(s) ;
return 1 ;
errd:
fd_close(d) ;
errs:
fd_close(s) ;
return 0 ;
}
|