aboutsummaryrefslogtreecommitdiff
path: root/src/gdbmcount.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gdbmcount.c')
-rw-r--r--src/gdbmcount.c19
1 files changed, 17 insertions, 2 deletions
diff --git a/src/gdbmcount.c b/src/gdbmcount.c
index 4a78bc0..3e6bb06 100644
--- a/src/gdbmcount.c
+++ b/src/gdbmcount.c
@@ -3,4 +3,3 @@
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1993-1994, 2007, 2011, 2013, 2016-2020 Free Software
- Foundation, Inc.
+ Copyright (C) 1993-2021 Free Software Foundation, Inc.
@@ -42 +41,17 @@ gdbm_count (GDBM_FILE dbf, gdbm_count_t *pcount)
}
+
+int
+gdbm_bucket_count (GDBM_FILE dbf, size_t *pcount)
+{
+ int i;
+ size_t count = 0;
+
+ GDBM_ASSERT_CONSISTENCY (dbf, -1);
+
+ for (i = 0; i < GDBM_DIR_COUNT (dbf); i = _gdbm_next_bucket_dir (dbf, i))
+ {
+ ++count;
+ }
+ *pcount = count;
+ return 0;
+}

Return to:

Send suggestions and report system problems to the System administrator.