summaryrefslogtreecommitdiffstats
path: root/core/equipment.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2020-02-23 11:07:51 +0100
committerGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2020-04-07 00:13:34 +0200
commit1ca25ec03950cea052fd151c41e7d6535cfb1381 (patch)
tree759b39874d4d4c3637b71392651738b2f0a22936 /core/equipment.h
parent2453d4fc1fa6c6109645853483839f1e3c87d4a8 (diff)
downloadsubsurface-1ca25ec03950cea052fd151c41e7d6535cfb1381.tar.gz
core: make free_cylinder() global
The cylinder undo commands will keep a copy of a cylinder and therefore need the ability to free a cylinder object. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/equipment.h')
-rw-r--r--core/equipment.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/equipment.h b/core/equipment.h
index 74f04dfdf..8bc752022 100644
--- a/core/equipment.h
+++ b/core/equipment.h
@@ -76,6 +76,7 @@ extern void free_weightsystem(weightsystem_t ws);
extern void copy_cylinder_types(const struct dive *s, struct dive *d);
extern void add_cloned_weightsystem(struct weightsystem_table *t, weightsystem_t ws);
extern cylinder_t clone_cylinder(cylinder_t cyl);
+extern void free_cylinder(cylinder_t cyl);
extern cylinder_t *add_empty_cylinder(struct cylinder_table *t);
extern void add_cloned_cylinder(struct cylinder_table *t, cylinder_t cyl);
extern cylinder_t *get_cylinder(const struct dive *d, int idx);