1dbh_close(3) DBHashTables Programmers' Manual dbh_close(3)
2
3
4
5‐
6
8 dbh_close, dbh_destroy - close or remove an open DBHashTable
9
11 #include <dbh.h>
12
13 int dbh_close (DBHashTable *dbh);
14 int dbh_destroy (DBHashTable *dbh);
15
17 dbh_close will close the DBHashTable file (thus flushing io buffer).
18
19 dbh_destroy will close an open DBHashTable and erase the file from
20 disk. Convenience function that does a close and rm.
21
23 0 if error, 1 otherwise.
24
26 dbh (0), dbh_create (3), dbh_open (3), dbh_open_ro (3)
27
29 Edscott Wilson Garcia <edscott@xfce.org>
30
31
32
33DBH DBH dbh_close(3)