summaryrefslogtreecommitdiffstats
path: root/core/divesite.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/divesite.c')
-rw-r--r--core/divesite.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/core/divesite.c b/core/divesite.c
index 25ec82ef3..a04d69f23 100644
--- a/core/divesite.c
+++ b/core/divesite.c
@@ -10,6 +10,16 @@
struct dive_site_table dive_site_table;
+struct dive_site *get_dive_site_by_uuid(uint32_t uuid)
+{
+ int i;
+ struct dive_site *ds;
+ for_each_dive_site (i, ds)
+ if (ds->uuid == uuid)
+ return get_dive_site(i);
+ return NULL;
+}
+
/* there could be multiple sites of the same name - return the first one */
struct dive_site *get_dive_site_by_name(const char *name)
{