/* ISC license. */ #include #include int cdb_mapfile (struct cdb *c, char const *file) { int fd = open_readb(file) ; if (fd < 0) return 0 ; if (!cdb_init_map(c, fd, 1)) { fd_close(fd) ; return 0 ; } fd_close(fd) ; return 1 ; }