blob: 45a6b14edc667349039865824b0543c660740aba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* ISC license. */
#include <errno.h>
#include <unistd.h>
#include <skalibs/posixplz.h>
#include <skalibs/djbunix.h>
int openwritenclose_unsafe5 (char const *fn, char const *s, size_t len, devino *devino, unsigned int options)
{
int fd = openc_trunc(fn) ;
if (fd < 0) return 0 ;
if (!writenclose_unsafe5(fd, s, len, devino, options))
{
fd_close(fd) ;
unlink_void(fn) ;
return 0 ;
}
return 1 ;
}
|