blob: 4ab6fa5e0281eec964cf533b814d287c0d79e821 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* ISC license. */
#include <skalibs/djbunix.h>
#include <skalibs/unix-transactional.h>
int openslurpclose_at (int dirfd, char const *fn, stralloc *sa)
{
int fd = openc_readatb(dirfd, fn) ;
if (fd < 0) return 0 ;
if (!slurp(sa, fd))
{
fd_close(fd) ;
return 0 ;
}
fd_close(fd) ;
return 1 ;
}
|