From f0366cc8ca8c42063d18196fca757017a4390f88 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 7 Oct 2008 22:09:55 +0200 Subject: songvec: pass const pointers Pass const songvec pointers to songvec_find() and songvec_for_each(). --- src/songvec.c | 7 +++++-- src/songvec.h | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/songvec.c b/src/songvec.c index b22ac4c1b..08ff7f236 100644 --- a/src/songvec.c +++ b/src/songvec.c @@ -23,7 +23,8 @@ void songvec_sort(struct songvec *sv) pthread_mutex_unlock(&nr_lock); } -Song *songvec_find(struct songvec *sv, const char *url) +Song * +songvec_find(const struct songvec *sv, const char *url) { int i; Song *ret = NULL; @@ -83,7 +84,9 @@ void songvec_destroy(struct songvec *sv) pthread_mutex_unlock(&nr_lock); } -int songvec_for_each(struct songvec *sv, int (*fn)(Song *, void *), void *arg) +int +songvec_for_each(const struct songvec *sv, + int (*fn)(Song *, void *), void *arg) { size_t i; diff --git a/src/songvec.h b/src/songvec.h index dbe6be508..0373ed3e7 100644 --- a/src/songvec.h +++ b/src/songvec.h @@ -11,7 +11,8 @@ struct songvec { void songvec_sort(struct songvec *sv); -Song *songvec_find(struct songvec *sv, const char *url); +Song * +songvec_find(const struct songvec *sv, const char *url); int songvec_delete(struct songvec *sv, const Song *del); @@ -19,6 +20,8 @@ void songvec_add(struct songvec *sv, Song *add); void songvec_destroy(struct songvec *sv); -int songvec_for_each(struct songvec *sv, int (*fn)(Song *, void *), void *arg); +int +songvec_for_each(const struct songvec *sv, + int (*fn)(Song *, void *), void *arg); #endif /* SONGVEC_H */ -- cgit v1.2.3