blob: cf9a7366588e1e4ef682b0b0fc8e97eaf085a7ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* ISC license. */
#include <errno.h>
#include <skalibs/stralloc.h>
#include <skalibs/djbunix.h>
int openreadclose (char const *fn, stralloc *sa, unsigned int bufsize)
{
int fd = open_readb(fn) ;
if (fd == -1) return (errno == ENOENT) ? 0 : -1 ;
if (!slurp(sa, fd))
{
register int e = errno ;
fd_close(fd) ;
errno = e ;
return -1 ;
}
fd_close(fd) ;
(void)bufsize ;
return 0 ;
}
|