summaryrefslogtreecommitdiff
path: root/doc/gdbm.3
blob: 4017bc9377abb5d3828c1799cd4c1ad542d31623 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
.\" This file is part of GDBM.
.\" Copyright (C) 2011-2023 Free Software Foundation, Inc.
.\"
.\" GDBM is free software; you can redistribute it and/or modify
.\" it under the terms of the GNU General Public License as published by
.\" the Free Software Foundation; either version 3, or (at your option)
.\" any later version.
.\"
.\" GDBM is distributed in the hope that it will be useful,
.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
.\" GNU General Public License for more details.
.\"
.\" You should have received a copy of the GNU General Public License
.\" along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
.TH GDBM 3 "October 18, 2021" "GDBM" "GDBM User Reference"
.SH NAME
GDBM \- The GNU database manager.  Includes \fBdbm\fR and \fBndbm\fR
compatibility.
.SH SYNOPSIS
.nf
.B #include <gdbm.h>
.sp
.BI "extern gdbm_error"  " gdbm_errno";
.br
.BI "extern char *" gdbm_version ;
.br
.BI "extern int "  gdbm_version[3] ;
.br
.BI "GDBM_FILE gdbm_open (const char *" name ", int " block_size ", "
.ti +21
.BI     "int " flags ", int " mode ", "
.ti +21
.BI "void (*" fatal_func ")(const char *))";
.br
.BI "int gdbm_close (GDBM_FILE " dbf ");"
.br
.BI "int gdbm_store (GDBM_FILE " dbf ", datum " key ", datum " content ", int " flag ");"
.br
.BI "datum gdbm_fetch (GDBM_FILE " dbf ", datum " key ");"
.br
.BI "int gdbm_delete (GDBM_FILE " dbf ", datum " key ");"
.br
.BI "datum gdbm_firstkey (GDBM_FILE " dbf ");"
.br
.BI "datum gdbm_nextkey (GDBM_FILE " dbf ", datum " key ");"
.br
.BI "int gdbm_recover (GDBM_FILE " dbf ", gdbm_recovery *" rcvr ", int" flags ");"
.br
.BI "int gdbm_reorganize (GDBM_FILE " dbf ");"
.br
.BI "int gdbm_sync (GDBM_FILE " dbf ");"
.br
.BI "int gdbm_exists (GDBM_FILE " dbf ", datum " key ");"
.br
.BI "const char *gdbm_strerror (gdbm_error " errno ");"
.br
.BI "int gdbm_setopt (GDBM_FILE " dbf ", int " option ", int " value ", int " size );
.br
.BI "int gdbm_fdesc (GDBM_FILE " dbf );
.br
.BI "int gdbm_count (GDBM_FILE " dbf ", gdbm_count_t *" pcount ");"
.br
.BI "int gdbm_bucket_count (GDBM_FILE " dbf ", size_t *" pcount ");"
.br
.BI "int gdbm_avail_verify (GDBM_FILE " dbf ");"
.PP
.SS Crash Tolerance (see below):
.PP
.BI "int gdbm_failure_atomic (GDBM_FILE " dbf ", const char *" even ", const char *" odd ");"
.br
.BI "int gdbm_latest_snapshot (const char *" even ", const char *" odd ", const char **" result ");"
.SH NOTICE
This manpage is a short description of the \fBGDBM\fR library.
For a detailed discussion, including examples and usage
recommendations, refer to the \fBGDBM Manual\fR available in
Texinfo format.  To access it, run:

  \fBinfo gdbm\fR

The documentation is also available online at

  \fBhttps://www.gnu.org/software/gdbm/manual\fR
  
Should any discrepancies occur between this manpage and the
\fBGDBM Manual\fR, the later shall be considered the authoritative
source.
.SH DESCRIPTION
\fBGNU dbm\fR is a library of routines that manages data files that contain
key/data pairs.  The access provided is that of storing, 
retrieval, and deletion by key and a non-sorted traversal of all
keys.  A process is allowed to use multiple data files at the
same time.
.SS Opening a database
A process that opens a gdbm file is designated as a "reader" or a
"writer".  Only one writer may open a gdbm file and many readers may
open the file.  Readers and writers can not open the gdbm file at the
same time. The procedure for opening a gdbm file is:
.PP
.BI "GDBM_FILE gdbm_open (const char *" name ", int " block_size ", "
.ti +21
.BI     "int " flags ", int " mode ", "
.ti +21
.BI "void (*" fatal_func ")(const char *))";
.PP
\fIName\fR is the name of the file (the complete name,
\fBgdbm\fR does not append any characters to this name).
.PP
\fIBlock_size\fR is the size of a single transfer from disk to
memory.  If the value is less than 512, the file system block size is
used instead.  The size is adjusted so that the block can hold exact
number of directory entries, so that the effective block size can be
slightly greater than requested.  This adjustment is disabled if the
\fBGDBM_BSEXACT\fR \fIflag\fR is used.
.PP
The \fIflags\fR parameter is a bitmask, composed of the \fIaccess
mode\fR and one or more modifier flags.  The \fIaccess mode\fR bit
designates the process as a reader or writer and must be one of the following:
.TP
.B GDBM_READER
reader
.TP
.B GDBM_WRITER
writer
.TP
.B GDBM_WRCREAT
writer - if database does not exist create new one
.TP
.B GDBM_NEWDB
writer - create new database regardless if one exists
.PP
Additional flags (\fImodifiers\fR) can be combined with these values
by bitwise \fBOR\fR.  Not all of them are meaningful with all access
modes.
.PP
Flags that are valid for any value of access mode are:
.TP
.B GDBM_CLOEXEC
Set the \fIclose-on-exec\fR flag on the database file descriptor.
.TP
.B GDBM_NOLOCK
Prevents the library from performing any locking on the database file.
.TP
.B GDBM_NOMMAP
Instructs \fBgdbm_open\fR to disable the use of
.BR mmap (2).
.TP
.B GDBM_PREREAD
When mapping GDBM file to memory, read its contents immediately,
instead of when needed (\fIprefault reading\fR).  This can be
advantageous if you open a \fIread-only\fR database and are going to
do a lot of look-ups on it.  In this case entire database will be
read at once and searches will operate on an in-memory copy.  In
contrast, \fBGDBM_PREREAD\fR should not be used if you open a database
(even in read-only mode) only to retrieve a couple of keys.
.sp
Finally, never use \fBGDBM_PREREAD\fR when opening a database for
updates, especially for inserts: this will degrade performance.
.sp
This flag has no effect if \fBGDBM_NOMMAP\fR is given, or if the
operating system does not support prefault reading.  It is known to
work on Linux and FreeBSD kernels. 					     
.TP
.B GDBM_XVERIFY
Enable additional consistency checks.  With this flag, eventual
corruptions of the database are discovered when opening it, instead of
when a corrupted structure is read during normal operation.  However,
on large databases, it can slow down the opening process.
.PP
The following additional flags are valid when the database is opened
for writing (\fBGDBM_WRITER\fR, \fBGDBM_WRCREAT\fR, or
\fBGDBM_NEWDB\fR):
.TP
.B GDBM_SYNC
Causes all database operations to be synchronized to the disk.
.sp
\fBNOTE\fR: this option entails severe performance degradation and
does not necessarily ensure that the resulting database state is
consistent, therefore we discourage its use.  For a discussion of how
to ensure database consistency with minimal performance overhead, see
.B CRASH TOLERANCE
below.
.TP
.B GDBM_FAST
A reverse of \fBGDBM_SYNC\fR: synchronize writes only when needed.
This is the default.  This flag is provided only for compatibility
with previous versions of GDBM.
.PP
The following flags can be used together with \fBGDBM_NEWDB\fR.  They
also take effect when used with \fBGDBM_WRCREAT\fR, if the requested
database file doesn't exist:
.TP
.B GDBM_BSEXACT
If this flag is set and the requested \fIblock_size\fR value cannot
be used, \fBgdbm_open\fR will refuse to create the database.  In this
case it will set the \fBgdbm_errno\fR variable to
\fBGDBM_BLOCK_SIZE_ERROR\fR and return \fBNULL\fR.
.sp
Without this flag, \fBgdbm_open\fR will silently adjust the
\fIblock_size\fR to a usable value, as described above.
.TP
.B GDBM_NUMSYNC
Create new database in \fIextended database format\fR, a format best
suited for effective crash recovery.  For a detailed discussion, see
the
.B CRASH RECOVERY
chapter below.
.PP
\fIMode\fR is the file mode (see
.BR chmod (2)
and
.BR open (2)).
It is used if the file is created.
.PP
\fIFatal_func\fR is a function to be called when \fBgdbm\fR if
it encounters a fatal error.  This parameter is deprecated and must
always be \fBNULL\fR.
.PP
The return value is the pointer needed by all other routines to
access that gdbm file.  If the return is the \fBNULL\fR pointer,
\fBgdbm_open\fR was not successful.  In this case, the reason of the
failure can be found in the \fIgdbm_errno\fR variable.  If the
following call returns \fItrue\fR (non-zero value):
.sp
.nf
.in +5
  gdbm_check_syserr(gdbm_open)
.in
.fi
.PP
the system \fIerrno\fR variable must be examined in order to obtain more
detail about the failure.
.PP
.BI "GDBM_FILE gdbm_fd_open (int " FD ", const char *" name ", int " block_size ", "
.ti +21
.BI     "int " flags ", int " mode ", "
.ti +21
.BI "void (*" fatal_func ")(const char *))";
.PP
This is an alternative entry point to \fBgdbm_open\fR.  \fIFD\fR is a
valid file descriptor obtained as a result of a call to
.BR open (2)
or
.BR creat (2).
The function opens (or creates) a \fGDBM\fR database this descriptor
refers to.  The descriptor is not \fBdup\fR'ed, and will be closed
when the returned \fBGDBM_FILE\fR is closed.  Use
.B dup (2)
if that is not desirable.
.PP
In case of error, the function behaves like \fBgdbm_open\fR and
\fBdoes not close\fR \fIFD\fR.  This can be altered by the following
value passed in \fIflags\fR:
.TP
.B GDBM_CLOERROR
Close \fIFD\fR before exiting on error.

The rest of arguments are the same as for \fBgdbm_open\fR.
.SS Calling convention
.PP
All \fBGDBM\fR functions take as their first parameter the
\fIdatabase handle\fR (\fBGDBM_FILE\fR), returned from \fBgdbm_open\fR
or \fBgdbm_fd_open\fR.
.PP
Any value stored in the \fBGDBM\fR database is described by
\fIdatum\fR, an aggregate type defined as:
.sp
.nf
.in +5
typedef struct
{
  char *dptr;
  int   dsize;
} datum;
.in
.fi
.PP
The \fIdptr\fR field points to the actual data.  Its type is
\fBchar *\fR for historical reasons.  Actually it should have been
typed
\fBvoid *\fR.  Programmers are free to store data of arbitrary
complexity, both scalar and aggregate, in this field.
.PP
The \fIdsize\fR field contains the number of bytes stored in
\fBdptr\fR.
.PP
The \fBdatum\fR type is used to describe both \fIkeys\fR and
\fIcontent\fR (values) in the database.  Values of this type can
be passed as arguments or returned from \fBGDBM\fR function calls.
.PP
\fBGDBM\fR functions that return \fBdatum\fR indicate failure by setting
its \fIdptr\fR field to \fBNULL\fR.
.PP
Functions returning integer value, indicate success by returning
0 and failure by returning a non-zero value (the only exception to this
rule is \fBgdbm_exists\fR, for which the return value is reversed).
.PP
If the returned value indicates failure, the \fBgdbm_errno\fR variable
contains an integer value indicating what went wrong.  A similar value
is associated with the \fIdbf\fR handle and can be accessed using the
\fBgdbm_last_errno\fR function.  Immediately after return from a
function, both values are exactly equal.  Subsequent \fBGDBM\fR calls
with another \fIdbf\fR as argument may alter the value of the global
\fBgdbm_errno\fR, but the value returned by \fBgdbm_last_errno\fR will
always indicate the most recent code of an error that occurred for
\fIthat particular database\fR.  Programmers are encouraged to use
such per-database error codes.
.PP
Sometimes the actual reason of the failure can be clarified by
examining the system \fBerrno\fR value.  To make sure its value is
meaningful for a given \fBGDBM\fR error code, use the
\fBgdbm_check_syserr\fR function.  The function takes error code as
argument and returns 1 if the \fBerrno\fR is meaningful for that
error, or 0 if it is irrelevant.
.PP
Similarly to \fBgdbm_errno\fR, the latest \fBerrno\fR value associated
with a particular database can be obtained using the
\fBgdbm_last_syserr\fR function.
.PP
The \fBgdbm_clear_error\fR clears the error indicator (both \fBGDBM\fR
and system error codes) associated with a database handle.
.PP
Some critical errors leave the database in a \fIstructurally
inconsistent state\fR.  If that happens, all subsequent \fBGDBM\fR calls
accessing that database will fail with the \fBGDBM\fR error code of
\fBGDBM_NEED_RECOVERY\fR (a special function \fBgdbm_needs_recovery\fR
is also provided, which returns true if the database handle given as
its argument is structurally inconsistent).  To return such
databases to consistent state, use the \fBgdbm_recover\fR function
(see below).
.PP
The \fBGDBM_NEED_RECOVERY\fR error cannot be cleared using
\fBgdbm_clear_error\fR.
.SS Error functions
This section describes the error handling functions outlined above.
.TP
.BI "gdbm_error gdbm_last_errno (GDBM_FILE " dbf ")"
Returns the error code of the most recent failure encountered when operating
on \fIdbf\fR.
.TP
.BI "int gdbm_last_syserr (GDBM_FILE " dbf ")"
Returns the value of the system \fBerrno\fR variable associated with
the most recent failure that occurred on \fIdbf\fR.
.sp
Notice that not all \fBgdbm_error\fR codes have a relevant system
error code.  Use the following function to determine if a given code has.
.TP
.BI "int gdbm_check_syserr (gdbm_error " err ")"
Returns \fB1\fR, if system \fBerrno\fR value should be checked to get more
info on the error described by GDBM code \fIerr\fR.
.TP
.BI "void gdbm_clear_error (GDBM_FILE " dbf ")"
Clears the error state for the database \fIdbf\fR.  This function is
called implicitly upon entry to any GDBM function that operates on
\fBGDBM_FILE\fR.
.sp
The \fBGDBM_NEED_RECOVERY\fR error cannot be cleared.
.TP
.BI "int gdbm_needs_recovery (GDBM_FILE " dbf ")"
Return \fB1\fR if the database file \fIdbf\fR is in inconsistent state
and needs recovery.
.TP
.BI "const char *gdbm_strerror (gdbm_error " err ")"
Returns a textual description of the error code \fIerr\fR.
.TP
.BI "const char *gdbm_db_strerror (GDBM_FILE " dbf ")"
Returns a textual description of the recent error in database
\fIdbf\fR.  This description includes the system \fBerrno\fR value, if
relevant.
.SS Closing the database
It is important that every database file opened is also closed.  This
is needed to update the reader/writer count on the file.  This is done by:
.TP
.BI "int gdbm_close (GDBM_FILE " dbf ");"
.SS Database lookups
.TP
.BI "int gdbm_exists (GDBM_FILE " dbf ", datum " key );
If the \fIkey\fR is found within the database, the return value 
will be \fItrue\fR (\fB1\fR).  If nothing appropriate is found, \fIfalse\fR
(\fB0\fR) is returned and \fBgdbm_errno\fR set to \fBGDBM_NO_ERROR\fR.
.sp
On error, returns 0 and sets \fBgdbm_errno\fR.
.TP
.BI "datum gdbm_fetch (GDBM_FILE " dbf ", datum " key );
\fIDbf\fR is the pointer returned by \fBgdbm_open\fR.  \fIKey\fR is
the key data.
.sp
If the \fIdptr\fR element of the return value is \fBNULL\fR, the
\fBgdbm_errno\fR variable should be examined.  The value of 
\fBGDBM_ITEM_NOT_FOUND\fR means no data was found for that \fIkey\fR.
Other value means an error occurred.
.sp
Otherwise the return value is a pointer to the found data.
The storage space for the \fIdptr\fR element is allocated using
\fBmalloc(3)\fR.  \fBGDBM\fR does not automatically free this data.
It is the programmer's responsibility to free this storage when it is
no longer needed.
.SS Iterating over the database
The following two routines allow for iterating over all items in the
database.  Such iteration is not key sequential, but it is
guaranteed to visit every key in the database exactly once.  (The
order has to do with the hash values.)
.TP
.BI "datum gdbm_firstkey (GDBM_FILE " dbf ");"
Returns first key in the database.
.TP
.BI "datum gdbm_nextkey (GDBM_FILE " dbf ", datum " key );
Given a \fIkey\fR, returns the database key that follows it.  End of
iteration is marked by returning \fIdatum\fR with \fIdptr\fR field set
to \fBNULL\fR and setting the \fBgdbm_errno\fR value to
\fBGDBM_ITEM_NOT_FOUND\fR.
.PP
After successful return from both functions, \fIdptr\fR points to data
allocated by
.BR malloc (3).
It is the caller responsibility to free the data when no longer
needed.
.PP
A typical iteration loop looks like:
.sp
.nf
.in +5
datum key, nextkey, content;
key = gdbm_firstkey (dbf);
while (key.dptr)
  {
    content = gdbm_fetch (dbf, key);
    /* Do something with key and/or content */
    nextkey = gdbm_nextkey (dbf, key);
    free (key.dptr);
    key = nextkey;
  }
.in
.fi
.PP
These functions are intended to visit the database in read-only
algorithms.  Avoid any database modifications within the iteration loop.
File \fIvisiting\fR is based on a hash table.  The \fBgdbm_delete\fR and,
in most cases, \fBgdbm_store\fR, functions rearrange the hash table to
make sure that any collisions in the table do not leave some item
`un-findable'.  Thus, a call to either of these functions changes
the order in which the keys are ordered.  Therefore, these functions
should not be used when iterating over all the keys in the database.
For example, the following loop is wrong: it is possible that some keys
will not be visited or will be visited twice if it is executed: 
.sp
.nf
.in +5
key = gdbm_firstkey (dbf);
while (key.dptr)
  {
    nextkey = gdbm_nextkey (dbf, key);
    if (some condition)
      gdbm_delete ( dbf, key );
    free (key.dptr);
    key = nextkey;
  }
.in
.fi
.SS Updating the database
.TP
.BI "int gdbm_store (GDBM_FILE " dbf ", datum " key ", datum " content ", int " flag );
\fIDbf\fR is the pointer returned by \fBgdbm_open\fR.  \fIKey\fR is the
key data.  \fIContent\fR is the data to be associated with the \fIkey\fR.
\fIFlag\fR can have one of the following values:
.RS 4
.TP
.B GDBM_INSERT
Insert only, generate an error if key exists;
.TP
.B GDBM_REPLACE
Replace contents if key exists.
.RE
.IP
The function returns 0 on success and \-1 on failure.  If the key
already exists in the database and the \fIflag\fR is
\fBGDBM_INSERT\fR, the function does not modify the database.  It sets
\fBgdbm_errno\fR to \fBGDBM_CANNOT_REPLACE\fR and returns 1.
.TP
.BI "int gdbm_delete (GDBM_FILE " dbf ", datum " key );
Looks up and deletes the given \fIkey\fR from the database \fIdbf\fR.
.sp
The return value is 0 if there was a successful delete or \-1 on
error.  In the latter case, the \fBgdbm_errno\fR value
\fBGDBM_ITEM_NOT_FOUND\fR indicates that the key is not present in the
database.  Other \fBgdbm_errno\fR values indicate failure.
.SS Recovering structural consistency
If a function leaves the database in structurally inconsistent state,
it can be recovered using the \fBgdbm_recover\fR function.
.TP
.BI "int gdbm_recover (GDBM_FILE " dbf ", gdbm_recovery * " rcvr ", int " flags ")"
Check the database file DBF and fix eventual inconsistencies.  The
\fIrcvr\fR argument can be used both to control the recovery and to
return additional statistics about the process, as indicated by
\fIflags\fR.  For a detailed discussion of these arguments and their
usage, see the \fBGDBM Manual\fR, chapter \fBRecovering structural
consistency\fR.
.sp
You can pass \fBNULL\fR as \fIrcvr\fR and \fB0\fR as \fIflags\fR, if
no such control is needed.
.sp
By default, this function first checks the database for
inconsistencies and attempts recovery only if some were found.  The
special \fIflags\fR bit \fBGDBM_RCVR_FORCE\fR instructs
\fBgdbm_recovery\fR to skip this check and to perform database
recovery unconditionally.
.SS Export and import
\fBGDBM\fR database files can be exported (dumped) to so called \fIflat
files\fR or imported (loaded) from them.  A flat file contains exactly
the same data as the original database, but it cannot be used for
searches or updates.  Its purpose is to keep the data from the
database for restoring it when the need arrives.  As such, flat files
are used for backup purposes, and for sending databases over the wire.
.PP
As of \fBGDBM\fR version 1.21, there are two flat file formats.  The
\fBASCII\fR file format encodes all data in Base64 and stores
not only key/data pairs, but also the original database file metadata,
such as file name, mode and ownership.  Files in this format can be
sent without additional encapsulation over transmission channels that
normally allow only ASCII data, such as, e.g. SMTP.  Due to additional
metadata they allow for restoring an exact copy of the database,
including file ownership and privileges, which is especially important
if the database in question contained some security-related data.
This is the preferred format.
.PP
Another flat file format is the \fBbinary\fR format.  It stores only
key/data pairs and does not keep information about the database file
itself.  It cannot be used to copy databases between different
architectures.  The binary format was introduced in \fBGDBM\fR version
1.9.1 and is retained mainly for backward compatibility.
.PP
The following functions are used to export or import \fBGDBM\fR
database files.
.TP
.BI "int gdbm_dump (GDBM_FILE " dbf ", const char *" filename ","
.PD 0
.TP
.ti +15
.BI "int " format ", int " open_flag ", int " mode ")"
.PD
Dumps the database file \fIdbf\fR to the file \fIfilename\fR in
requested \fIformat\fR.  Allowed values for \fIformat\fR are:
.BR GDBM_DUMP_FMT_ASCII ,
to create an ASCII dump file, and
.BR GDBM_DUMP_FMT_BINARY ,
to create a binary dump.

The value of \fIopen_flag\fR tells \fBgdbm_dump\fR what to do if
\fIfilename\fR already exists.  If it is \fBGDBM_NEWDB\fR, the
function will create a new output file, replacing it if it already
exists.  If its value is \fBGDBM_WRCREAT\fR, the file will be created
if it does not exist.  If it does exist, \fBgdbm_dump\fR will return
error.

The file mode to use when creating the output file is defined by the
\fImode\fR parameter.  Its meaning is the same as for
.BR open (2).
.TP
.BI "int gdbm_load (GDBM_FILE *" pdbf ", const char *" filename ","
.PD 0
.TP
.ti +15
.BI "int " flag ", int " meta_mask ", unsigned long *" errline ")"
.PD
Loads data from the dump file \fIfilename\fR into the database pointed
to by \fIpdbf\fR.  If \fIpdbf\fR is \fBNULL\fR, the function will try
to create a new database.  On success, the new \fBGDBM_FILE\fR object
will be stored in the memory location pointed to by \fIpdbf\fR.  If
the dump file carries no information about the original database file
name, the function will set \fBgdbm_errno\fR to \fBGDBM_NO_DBNAME\fR
and return -1, indicating failure.

Otherwise, if \fIpdbf\fR points to an already open \fBGDBM_FILE\fR,
the function will load data from \fIfilename\fR into that database.

The \fIflag\fR parameter controls the function behavior if a key
from the dump file already exists in the database.  See the
\fBgdbm_store\fR function for its possible values.

The \fImeta_mask\fR parameter can be used to disable restoring certain
bits of file's meta-data from the information in the input dump file.
It is a binary OR of zero or more of the following:
.RS +4
.TP
.B GDBM_META_MASK_MODE
Do not restore file mode.
.TP
.B GDBM_META_MASK_OWNER
Do not restore file owner.
.RE
.SS Other functions
.TP  
.BI "int gdbm_reorganize (GDBM_FILE " dbf ");"
If you have had a lot of deletions and would like to shrink the space
used by the \fBGDBM\fR file, this routine will reorganize the
database.
.TP
.BI "int gdbm_sync (GDBM_FILE " dbf ");"
Synchronizes the changes in \fIdbf\fR with its disk file.
.sp
It will not return until the disk file state is synchronized with the
in-memory state of the database.
.TP
.BI "int gdbm_setopt (GDBM_FILE " dbf ", int " option ", void *" value ", int " size );
Query or change some parameter of an already opened database.  The
\fIoption\fR argument defines what parameter to set or retrieve.  If
the \fIset\fR operation is requested, \fIvalue\fR points to the new
value.  Its actual data type depends on \fIoption\fR.  If the
\fIget\fR operation is requested, \fIvalue\fR points to a memory
region where to store the return value.  In both cases, \fIsize\fR
contains the actual size of the memory pointed to by \fIvalue\fR.
.sp
Possible values of \fIoption\fR are:
.RS +4
.TP
.B GDBM_SETCACHESIZE
.TQ
.B GDBM_CACHESIZE
Set the size of the internal bucket cache.  The \fIvalue\fR should
point to a \fBsize_t\fR holding the desired cache size, or the
constant \fBGDBM_CACHE_AUTO\fR, to select the best cache size
automatically.

By default, a newly open database is configured to adapt the cache
size to the number of index buckets in the database file.  This
provides for the best performance.

Use this option if you wish to limit the memory usage at the expense
of performance.  If you chose to do so, please bear in mind that cache
becomes effective when its size is greater then 2/3 of the number of
index bucket counts in the database.  The best performance results are
achieved when cache size equals the number of buckets.
.TP
.B GDBM_GETCACHESIZE
Return the size of the internal bucket cache.  The \fIvalue\fR should
point to a \fBsize_t\fR variable, where the size will be stored.
.TP
.B GDBM_GETFLAGS
Return the flags describing current state of the database.  The
\fIvalue\fR should point to an \fBint\fR variable where to store the
flags.  On success, its value will be similar to the flags used when
opening the database, except that it will reflect the current state
(which may have been altered by another calls to \fBgdbm_setopt\fR).
.TP
.B GDBM_FASTMODE
Enable or disable the \fIfast writes mode\fR, similar to the
\fBGDBM_FAST\fR option to \fBgdbm_open\fR.

This option is retained for compatibility with previous versions of
\fBGDBM\fR.
.TP
.B GDBM_SETSYNCMODE
.TQ
.B GDBM_SYNCMODE
Turn on or off immediate disk synchronization after updates.  The
\fIvalue\fR should point to an integer: 1 to turn synchronization on,
and 0 to turn it off.

\fBNOTE\fR: setting this option entails severe performance degradation
and does not necessarily ensure that the resulting database state is
consistent, therefore we discourage its use.  For a discussion of how
to ensure database consistency with minimal performance overhead, see
.B CRASH TOLERANCE
below.
.TP
.B GDBM_GETSYNCMODE
Return the current synchronization status.  The \fIvalue\fR should
point to an \fBint\fR where the status will be stored.
.TP
.B GDBM_SETCENTFREE
.TQ
.B GDBM_CENTFREE
Enable or disable central free block pool.  The default is off,
which is how previous versions of \fBGDBM\fR handled free blocks.  If
set, this option causes all subsequent free blocks to be placed in the
\fIglobal\fR pool, allowing (in theory) more file space to be reused
more quickly.  The \fIvalue\fR should point to an integer: \fBTRUE\fR to
turn central block pool on, and \fBFALSE\fR to turn it off.

The \fBGDBM_CENTFREE\fR alias is provided for compatibility with
earlier versions.
.TP
.B GDBM_SETCOALESCEBLKS
.TQ
.B GDBM_COALESCEBLKS
Set free block merging to either on or off.  The default is off, which
is how previous versions of \fBGDBM\fR handled free blocks.  If set,
this option causes adjacent free blocks to be merged.  This can become
a CPU expensive process with time, though, especially if used in
conjunction with \fBGDBM_CENTFREE\fR.  The \fIvalue\fR should point 
to an integer: \fBTRUE\fR to turn free block merging on, and \fBFALSE\fR to
turn it off.
.TP
.B GDBM_GETCOALESCEBLKS
Return the current status of free block merging.  The \fIvalue\fR should
point to an \fBint\fR where the status will be stored.
.TP
.B GDBM_SETMAXMAPSIZE
Sets maximum size of a memory mapped region.  The \fIvalue\fR should
point to a value of type \fBsize_t\fR, \fBunsigned long\fR or
\fBunsigned\fR.  The actual value is rounded to the nearest page
boundary (the page size is obtained from \fBsysconf(_SC_PAGESIZE)\fR).
.TP
.B GDBM_GETMAXMAPSIZE
Return the maximum size of a memory mapped region.  The \fIvalue\fR should
point to a value of type \fBsize_t\fR where to return the data.
.TP
.B GDBM_SETMMAP
Enable or disable memory mapping mode.  The \fIvalue\fR should point
to an integer: \fBTRUE\fR to enable memory mapping or \fBFALSE\fR to
disable it.
.TP
.B GDBM_GETMMAP
Check whether memory mapping is enabled.  The \fIvalue\fR should point
to an integer where to return the status.
.TP
.B GDBM_GETDBNAME
Return the name of the database disk file.  The \fIvalue\fR should
point to a variable of type \fBchar**\fR.  A pointer to the newly
allocated copy of the file name will be placed there.  The caller is
responsible for freeing this memory when no longer needed.
.TP
.B GDBM_GETBLOCKSIZE
Return the block size in bytes.  The \fIvalue\fR should point to \fBint\fR.
.RE
.TP
.BI "int gdbm_fdesc (GDBM_FILE " dbf );
Returns the file descriptor of the database \fIdbf\fR.
.SH CRASH TOLERANCE
By default \fBGNU dbm\fR does not protect the integrity of its
databases from corruption or destruction due to failures such as
power outages, operating system kernel panics, or application process
crashes.  Such failures could damage or destroy the underlying
database.
.PP
Starting with release 1.21 \fBGNU dbm\fR includes a mechanism that,
if used correctly, enables post-crash recovery to a consistent state
of the underlying database.  This mechanism requires OS and
filesystem support and must be requested when \fBgdbm\fR is compiled.
The crash-tolerance mechanism is a "pure opt-in" feature, in the
sense that it has no effects whatsoever except on those applications
that explicitly request it.  For details, see the chapter
.B "Crash Tolerance"
in the
.BR "GDBM manual" .
.SH GLOBAL VARIABLES
.TP
.B gdbm_error gdbm_errno
This variable contains code of the most recent error that occurred.
Note, that it is not C variable in the proper sense: you can use its
value, assign any value to it, but taking its address will result in
syntax error.  It is a per-thread memory location.
.TP
.B const char *gdbm_version
A string containing the library version number and build date.
.TP
.B int const gdbm_version_number[3]
This variable contains library version numbers: major, minor, and
patchlevel.
.SH VERSIONING
The version information is kept in two places.  The version of the
library is kept in the \fBgdbm_version_number\fR variable, described
above.  Additionally, the header file \fBgdbm.h\fR defines the
following macros:
.TP
.B GDBM_VERSION_MAJOR
Major version number.
.TP
.B GDBM_VERSION_MINOR
Minor version number.
.TP
.B GDBM_VERSION_PATCH
Patchlevel number.  \fB0\fR means no patchlevel.
.PP
You can use this to compare whether your header file corresponds to
the library the program is linked with.
.PP
The following function can be used to compare two version numbers:
.TP
.BI "int gdbm_version_cmp (int const " a "[3], int const " b "[3])"
Compare two version numbers formatted as \fBgdbm_version_number\fR.
Return negative number if \fBa\fR is older than \fBb\fR, positive
number if \fBa\fR is newer than \fBb\fR, and 0 if they are equal.
.SH ERROR CODES
.TP
.B GDBM_NO_ERROR
No error occurred.
.TP
.B GDBM_MALLOC_ERROR
Memory allocation failed.
.TP
.B GDBM_BLOCK_SIZE_ERROR
This error is set by the \fBgdbm_open\fR function, if
the value of its \fIblock_size\fR argument is incorrect and the
\fBGDBM_BSEXACT\fR flag is set.
.TP
.B GDBM_FILE_OPEN_ERROR
The library was not able to open a disk file.  This can be set by
\fBgdbm_open\fR, \fBgdbm_fd_open\fR, \fBgdbm_dump\fR and
\fBgdbm_load\fR functions.
.sp
Inspect the value of the system \fBerrno\fR variable to get more
detailed diagnostics.
.TP
.B GDBM_FILE_WRITE_ERROR
Writing to a disk file failed.  This can be set by
\fBgdbm_open\fR, \fBgdbm_fd_open\fR, \fBgdbm_dump\fR and
\fBgdbm_load\fR functions.
.sp
Inspect the value of the system \fBerrno\fR variable to get more
detailed diagnostics.
.TP
.B GDBM_FILE_SEEK_ERROR
Positioning in a disk file failed.  This can be set by
\fBgdbm_open\fR function.
.sp
Inspect the value of the system \fBerrno\fR variable to get a more
detailed diagnostics.
.TP
.B GDBM_FILE_READ_ERROR
Reading from a disk file failed.  This can be set by
\fBgdbm_open\fR, \fBgdbm_dump\fR and \fBgdbm_load\fR functions.
.sp
Inspect the value of the system \fBerrno\fR variable to get a more
detailed diagnostics.
.TP
.B GDBM_BAD_MAGIC_NUMBER
The file given as argument to \fBgdbm_open\fR function is not a valid
\fBgdbm\fR file: it has a wrong magic number.
.TP
.B GDBM_EMPTY_DATABASE
The file given as argument to \fBgdbm_open\fR function is not a valid
\fBgdbm\fR file: it has zero length.  This error is returned unless
the \fIflags\fR argument has \fBGDBM_NEWDB\fR bit set.
.TP
.B GDBM_CANT_BE_READER
This error code is set by the \fBgdbm_open\fR function if it is not
able to lock file when called in \fBGDBM_READER\fR mode.
.TP
.B GDBM_CANT_BE_WRITER
This error code is set by the \fBgdbm_open\fR function if it is not
able to lock file when called in writer mode.
.TP
.B GDBM_READER_CANT_DELETE
Set by the \fBgdbm_delete\fR, if it attempted to operate on a database
that is open in read-only mode.
.TP
.B GDBM_READER_CANT_STORE
Set by the \fBgdbm_store\fR if it attempted to operate on a database
that is open in read-only mode.
.TP
.B GDBM_READER_CANT_REORGANIZE
Set by the \fBgdbm_reorganize\fR if it attempted to operate on a
database that is open in read-only mode.
.TP
.B GDBM_ITEM_NOT_FOUND
Requested item was not found.  This error is set by \fBgdbm_delete\fR
and \fBgdbm_fetch\fR when the requested key value is not found in the
database.
.TP
.B GDBM_REORGANIZE_FAILED
The \fBgdbm_reorganize\fR function is not able to create a temporary
database.
.TP
.B GDBM_CANNOT_REPLACE
Cannot replace existing item.  This error is set by the
\fBgdbm_store\fR if the requested key value is found in the 
database and the \fIflag\fR parameter is not \fBGDBM_REPLACE\fR.
.TP
.B GDBM_MALFORMED_DATA
Input data was malformed in some way.  When returned by
\fBgdbm_load\fR, this means that the input file was not a valid
\fBgdbm\fR dump file.  When returned by \fBgdbm_store\fR, this means
that either \fIkey\fR or \fIcontent\fR parameter had its \fBdptr\fR
field set to \fBNULL\fR. 
.sp
The \fBGDBM_ILLEGAL_DATA\fR is an alias for this error code,
maintained for backward compatibility.
.TP
.B GDBM_OPT_ALREADY_SET
Requested option can be set only once and was already set.  As of
version 1.21, this error code is no longer used.  In prior
versions it could have been returned by the \fBgdbm_setopt\fR
function when setting the \fBGDBM_CACHESIZE\fR value.
.TP
.B GDBM_OPT_BADVAL
The \fIoption\fR argument is not valid or the \fIvalue\fR argument
points to an invalid value in a call to \fBgdbm_setopt\fR function.
.sp
\fBGDBM_OPT_ILLEGAL\fR is an alias for this error code, maintained
for backward compatibility.  Modern applications should not use it.
.TP
.B GDBM_BYTE_SWAPPED
The \fBgdbm_open\fR function attempts to open a database which is
created on a machine with different byte ordering.
.TP
.B GDBM_BAD_FILE_OFFSET
The \fBgdbm_open\fR function sets this error code if the file it tries
to open has a wrong magic number.
.TP
.B GDBM_BAD_OPEN_FLAGS
Set by the \fBgdbm_dump\fR function if supplied an invalid
\fIflags\fR argument.
.TP
.B GDBM_FILE_STAT_ERROR
Getting information about a disk file failed.  The system \fBerrno\fR
will give more details about the error.
.sp
This error can be set by the following functions: \fBgdbm_open\fR,
\fBgdbm_reorganize\fR.
.TP
.B GDBM_FILE_EOF
End of file was encountered where more data was expected to be
present.  This error can occur when fetching data from the database
and usually means that the database is truncated or otherwise corrupted.
.sp
This error can be set by any GDBM function that does I/O.  Some of
these functions are: \fBgdbm_delete\fR, \fBgdbm_exists\fR,
\fBgdbm_fetch\fR, \fBgdbm_export\fR, \fBgdbm_import\fR,
\fBgdbm_reorganize\fR, \fBgdbm_firstkey\fR, \fBgdbm_nextkey\fR,
\fBgdbm_store\fR.
.TP
.B GDBM_NO_DBNAME
Output database name is not specified.  This error code is set by
\fBgdbm_load\fR if the first argument points to \fBNULL\fR and the
input file does not specify the database name.
.TP
.B GDBM_ERR_FILE_OWNER
This error code is set by \fBgdbm_load\fR if it is unable to restore
the database file owner.  It is a mild error condition, meaning that
the data have been restored successfully, only changing the target file
owner failed.  Inspect the system \fBerrno\fR variable to get a more
detailed diagnostics.
.TP
.B GDBM_ERR_FILE_MODE
This error code is set by \fBgdbm_load\fR if it is unable to restore
database file mode.  It is a mild error condition, meaning that the data
have been restored successfully, only changing the target file owner
failed.  Inspect the system \fBerrno\fR variable to get a more
detailed diagnostics.
.TP
.B GDBM_NEED_RECOVERY
Database is in inconsistent state and needs recovery.  Call
\fBgdbm_recover\fR if you get this error.
.TP
.B GDBM_BACKUP_FAILED
The GDBM engine is unable to create backup copy of the file.
.TP
.B GDBM_DIR_OVERFLOW
Bucket directory would overflow the size limit during an attempt to split
hash bucket.  This error can occur while storing a new key.
.TP
.B GDBM_BAD_BUCKET
Invalid index bucket is encountered in the database.  Database
recovery is needed.
.TP
.B GDBM_BAD_HEADER
This error is set by \fBgdbm_open\fR and \fBgdbm_fd_open\fR, if the
first block read from the database file does not contain a valid GDBM
header.
.TP
.B GDBM_BAD_AVAIL
The available space stack is invalid.  This error can be set by
\fBgdbm_open\fR and \fBgdbm_fd_open\fR, if the extended database
verification was requested (\fBGDBM_XVERIFY\fR).  It is also set
by the \fBgdbm_avail_verify\fR function.
.sp
The database needs recovery.
.TP
.B GDBM_BAD_HASH_TABLE
Hash table in a bucket is invalid.  This error can be set by the
following functions: \fBgdbm_delete\fR, \fBgdbm_exists\fR,
\fBgdbm_fetch\fR, \fBgdbm_firstkey\fR, \fBgdbm_nextkey\fR, and
\fBgdbm_store\fR.
.sp
The database needs recovery.
.TP
.B GDBM_BAD_DIR_ENTRY
Bad directory entry found in the bucket.  The database recovery is
needed.
.TP
.B GDBM_FILE_CLOSE_ERROR
The \fBgdbm_close\fR function was unable to close the database file
descriptor.  The system \fBerrno\fR variable contains the
corresponding error code.
.TP
.B GDBM_FILE_SYNC_ERROR
Cached content couldn't be synchronized to disk.  Examine the
\fBerrno\fR variable to get more info,
.sp
Database recovery is needed.
.TP
.B GDBM_FILE_TRUNCATE_ERROR
File cannot be truncated.  Examine the \fBerrno\fR variable to get
more info.
.sp
This error is set by \fBgdbm_open\fR and \fBgdbm_fd_open\fR when
called with the \fBGDBM_NEWDB\fR flag.
.TP
.B GDBM_BUCKET_CACHE_CORRUPTED
The bucket cache structure is corrupted.  Database recovery is needed.
.TP
.B GDBM_BAD_HASH_ENTRY
This error is set during sequential access (@pxref{Sequential}), if
the next hash table entry does not contain the expected key.  This
means that the bucket is malformed or corrupted and the database needs
recovery.
.TP
.B GDBM_ERR_SNAPSHOT_CLONE
Set by the \fBgdbm_failure_atomic\fR function if it was unable to
clone the database file into a snapshot.  Inspect the system
\fBerrno\fR variable for the underlying cause of the error.  If
\fBerrno\fR is \fBEINVAL\fR or \fBENOSYS\fR, crash tolerance
settings will be removed from the database.
.TP
.B GDBM_ERR_REALPATH
Set by the \fBgdbm_failure_atomic\fR function if the call to
\fBrealpath\fR function failed.  \fBrealpath\fR is used to
determine actual path names of the snapshot files.  Examine the system
\fBerrno\fR variable for details.
.TP
.B GDBM_ERR_USAGE
Function usage error.  That includes invalid argument values, and the
like.
.SH DBM COMPATIBILITY ROUTINES
\fBGDBM\fR includes a compatibility library \fBlibgdbm_compat\fR, for
use with programs that expect traditional UNIX \fBdbm\fR or
\fBndbm\fR interfaces, such as, e.g. \fBSendmail\fR.  The library is
optional and thus may be absent in some binary distributions.
.PP
As the detailed discussion of the compatibility API is beyond the scope
of this document, below we provide only a short reference.  For
details, see the \fBGDBM Manual\fR, chapter \fBCompatibility with
standard dbm and ndbm\fR.
.SS DBM compatibility routines
In \fBdbm\fR compatibility mode only one file may be opened at a time.
All users are assumed to be writers.  If the database file is read
only, it will fail as a writer, but will be opened as a reader.  All
returned pointers in datum structures point to data that the
compatibility library \fBwill free\fR.  They should be
treated as static pointers (as standard UNIX \fBdbm\fR does).
.PP
The following interfaces are provided:
.PP
.B #include <dbm.h>
.sp
.BI "int dbminit (const char *" name ");"
.br
.BI "int store (datum " key ", datum " content );
.br
.BI "datum fetch (datum " key );
.br
.BI "int delete (datum " key );
.br
.BI "datum firstkey (void);"
.br
.BI "datum nextkey (datum " key );
.br
.BI "int dbmclose (void);"
.SS NDBM Compatibility routines:
In this mode, multiple databases can be opened.  Each database is
identified by a handle of type \fBDBM *\fR.  As in the original
\fBNDBM\fR, all returned pointers in datum structures point to data
that will be freed by the compatibility library.  They should be
treated as static pointers.
.PP
The following interfaces are provided:
.PP
.B #include <ndbm.h>
.sp
.BI "DBM *dbm_open (const char *" name ", int " flags ", int " mode );
.br
.BI "void dbm_close (DBM *" file );
.br
.BI "datum dbm_fetch (DBM *" file ", datum " key );
.br
.BI "int dbm_store (DBM *" file ", datum " key ", datum " content ", int " flags );
.br
.BI "int dbm_delete (DBM *" file ", datum " key );
.br
.BI "datum dbm_firstkey (DBM *" file );
.br
.BI "datum dbm_nextkey (DBM *" file ", datum " key );
.br
.BI "int dbm_error (DBM *" file );
.br
.BI "int dbm_clearerr (DBM *" file );
.br
.BI "int dbm_pagfno (DBM *" file );
.br
.BI "int dbm_dirfno (DBM *" file );
.br
.BI "int dbm_rdonly (DBM *" file );
.SH LINKING
This library is accessed by specifying \fI\-lgdbm\fR as the last
parameter to the compile line, e.g.:
.sp
.nf
.in +5
gcc \-o prog prog.c \-lgdbm
.in
.fi
.PP
If you wish to use the \fBdbm\fR or \fBndbm\fR compatibility routines,
you must link in the \fIgdbm_compat\fR library as well.  For example:
.sp
.nf
.in +5
gcc \-o prog proc.c \-lgdbm \-lgdbm_compat
.in
.fi
.\" .SH BUGS

.SH "BUG REPORTS"
Send bug reports to <bug\-gdbm@gnu.org>.
.SH "SEE ALSO"
.BR gdbm_dump (1),
.BR gdbm_load (1),
.BR gdbmtool (1).
.SH AUTHORS
by Philip A. Nelson, Jason Downs and Sergey Poznyakoff;
crash tolerance by Terence Kelly.
.SH COPYRIGHT
Copyright \(co 1990 - 2021 Free Software Foundation, Inc.

GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 1, or (at your option)
any later version.

GDBM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with GDBM.  If not, see <http://gnu.org/licenses/gpl.html>
.SH CONTACTS
You may contact the original author by:
.br
   e-mail:  phil@cs.wwu.edu
.br
  us-mail:  Philip A. Nelson
.br
Computer Science Department
.br
Western Washington University
.br
Bellingham, WA 98226

You may contact the current maintainers by:
.br
   e-mail:  downsj@downsj.com
.br
and
   e-mail:  gray@gnu.org

For questions and feedback regarding crash tolerance, you may contact
Terence Kelly at:
.br
   e-mail:  tpkelly @ { acm.org, cs.princeton.edu, eecs.umich.edu }

.\" Local variables:
.\" eval: (add-hook 'write-file-hooks 'time-stamp)
.\" time-stamp-start: ".TH GDBM 3 \""
.\" time-stamp-format: "%:B %:d, %:y"
.\" time-stamp-end: "\""
.\" time-stamp-line-limit: 20
.\" end: