summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dive.c4
-rw-r--r--dive.h3
2 files changed, 7 insertions, 0 deletions
diff --git a/dive.c b/dive.c
index 3b448e503..f1e113d05 100644
--- a/dive.c
+++ b/dive.c
@@ -2272,6 +2272,10 @@ struct picture* dive_add_picture(struct dive *d, char *picture)
uint dive_get_picture_count(struct dive *d)
{
+ uint i = 0;
+ FOR_EACH_PICTURE( d )
+ i++;
+ return i;
}
void dive_remove_picture(struct dive *d, char *picture)
diff --git a/dive.h b/dive.h
index e41267e84..87a786841 100644
--- a/dive.h
+++ b/dive.h
@@ -289,6 +289,9 @@ struct picture {
struct picture *next;
};
+#define FOR_EACH_PICTURE( DIVE ) \
+ for(struct picture *picture = DIVE->picture_list; picture; picture = picture->next)
+
extern struct picture *dive_add_picture(struct dive *d, char *picture);
extern void dive_remove_picture(struct dive *d, char *picture);
extern uint dive_get_picture_count(struct dive *d);