diff options
-rw-r--r-- | core/trip.c | 10 | ||||
-rw-r--r-- | core/trip.h | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/core/trip.c b/core/trip.c index 9f05699dc..6e7c4653d 100644 --- a/core/trip.c +++ b/core/trip.c @@ -195,6 +195,16 @@ dive_trip_t *get_trip_for_new_dive(struct dive *new_dive, bool *allocated) return trip; } +/* lookup of trip in main trip_table based on its id */ +dive_trip_t *get_trip_by_uniq_id(int tripId) +{ + for (int i = 0; i < trip_table.nr; i++) { + if (trip_table.trips[i]->id == tripId) + return trip_table.trips[i]; + } + return NULL; +} + /* Check if two trips overlap time-wise up to trip threshold. */ bool trips_overlap(const struct dive_trip *t1, const struct dive_trip *t2) { diff --git a/core/trip.h b/core/trip.h index 3a8a2feb7..c9335fc0a 100644 --- a/core/trip.h +++ b/core/trip.h @@ -45,6 +45,7 @@ extern dive_trip_t *create_trip_from_dive(struct dive *dive); extern dive_trip_t *create_and_hookup_trip_from_dive(struct dive *dive, struct trip_table *trip_table_arg); extern dive_trip_t *get_dives_to_autogroup(struct dive_table *table, int start, int *from, int *to, bool *allocated); extern dive_trip_t *get_trip_for_new_dive(struct dive *new_dive, bool *allocated); +extern dive_trip_t *get_trip_by_uniq_id(int tripId); extern bool trips_overlap(const struct dive_trip *t1, const struct dive_trip *t2); extern void select_dives_in_trip(struct dive_trip *trip); |