blob: b31f1e666162fb9b5e8e5bb30793ba567e46576d (
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/cdb.h>
int cdb_mapfile (struct cdb *c, char const *file)
{
int fd = openc_read(file) ;
if (fd < 0) return 0 ;
if (cdb_init(c, fd) == -1)
{
fd_close(fd) ;
return 0 ;
}
fd_close(fd) ;
return 1 ;
}
|