mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-01 10:33:25 +00:00
4d3e74a236
This compiles and looks about right, but it doesn't appear to work, yet. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
30 lines
907 B
C
30 lines
907 B
C
#ifndef PLANNER_H
|
|
#define PLANNER_H
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int validate_gas(const char *text, int *o2_p, int *he_p);
|
|
extern int validate_time(const char *text, int *sec_p, int *rel_p);
|
|
extern int validate_depth(const char *text, int *mm_p);
|
|
extern int validate_po2(const char *text, int *mbar_po2);
|
|
extern int validate_volume(const char *text, int *sac);
|
|
extern timestamp_t current_time_notz(void);
|
|
extern void show_planned_dive(char **error_string_p);
|
|
extern int add_duration_to_nth_dp(struct diveplan *diveplan, int idx, int duration, bool is_rel);
|
|
extern void add_po2_to_nth_dp(struct diveplan *diveplan, int idx, int po2);
|
|
extern void set_last_stop(bool last_stop_6m);
|
|
|
|
extern struct diveplan diveplan;
|
|
extern struct dive *planned_dive;
|
|
extern char *cache_data;
|
|
extern char *disclaimer;
|
|
extern double plangflow, plangfhigh;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* PLANNER_H */
|