From 5990826a3b7fd661b234c53d0739f68eb138b3cb Mon Sep 17 00:00:00 2001 From: Tim Segers Date: Sat, 22 Oct 2022 21:50:20 +0200 Subject: Remove const qualifier from non-pointer parameters --- src/schedule.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/schedule.h') diff --git a/src/schedule.h b/src/schedule.h index 299217e..d450232 100644 --- a/src/schedule.h +++ b/src/schedule.h @@ -30,7 +30,7 @@ typedef enum segtype_t { } segtype_t; typedef struct waypoint_callback_t { - void (*fn)(const decostate_t *ds, const waypoint_t, const segtype_t, void *arg); + void (*fn)(const decostate_t *, waypoint_t, segtype_t, void *); void *arg; } waypoint_callback_t; @@ -38,14 +38,14 @@ typedef struct waypoint_callback_t { extern int SWITCH_INTERMEDIATE; /* functions */ -const gas_t *best_gas(const double depth, const gas_t *gasses, const int nof_gasses); +const gas_t *best_gas(double depth, const gas_t *gasses, int nof_gasses); -int direct_ascent(const decostate_t *ds, const double depth, const double time, const gas_t *gas); -double calc_ndl(decostate_t *ds, const double depth, const double ascrate, const gas_t *gas); +int direct_ascent(const decostate_t *ds, double depth, double time, const gas_t *gas); +double calc_ndl(decostate_t *ds, double depth, double ascrate, const gas_t *gas); -void simulate_dive(decostate_t *ds, waypoint_t *waypoints, const int nof_waypoints, waypoint_callback_t *wp_cb); +void simulate_dive(decostate_t *ds, const waypoint_t *waypoints, int nof_waypoints, const waypoint_callback_t *wp_cb); -decoinfo_t calc_deco(decostate_t *ds, const double start_depth, const gas_t *start_gas, const gas_t *deco_gasses, - const int nof_gasses, waypoint_callback_t *wp_cb); +decoinfo_t calc_deco(decostate_t *ds, double start_depth, const gas_t *start_gas, const gas_t *deco_gasses, + int nof_gasses, const waypoint_callback_t *wp_cb); #endif /* end of include guard: SCHEDULE_H */ -- cgit v1.2.3-70-g09d2