summaryrefslogtreecommitdiffstats
path: root/divesite.c
diff options
context:
space:
mode:
Diffstat (limited to 'divesite.c')
-rw-r--r--divesite.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/divesite.c b/divesite.c
index 8bc9e04f7..4348461c6 100644
--- a/divesite.c
+++ b/divesite.c
@@ -108,6 +108,19 @@ struct dive_site *alloc_dive_site()
return ds;
}
+int nr_of_dives_at_dive_site(uint32_t uuid, bool select_only)
+{
+ int j;
+ int nr = 0;
+ struct dive *d;
+ for_each_dive(j, d) {
+ if (d->dive_site_uuid == uuid && (!select_only || d->selected)) {
+ nr++;
+ }
+ }
+ return nr;
+}
+
bool is_dive_site_used(uint32_t uuid, bool select_only)
{
int j;