blob: bf6d3abaccd36163373225d382f0d12e32cc3c3d (
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 = open_readatb(dirfd, fn) ;
if (fd < 0) return 0 ;
if (!slurp(sa, fd))
{
fd_close(fd) ;
return 0 ;
}
fd_close(fd) ;
return 1 ;
}
|