From d562ba5fbbe117585eaade40a8e9c6ef1bf7ca1f Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 8 Oct 2008 10:49:11 +0200 Subject: song: converted typedef Song to struct song Again, a data type which can be forward-declared. --- src/song_print.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/song_print.h') diff --git a/src/song_print.h b/src/song_print.h index 78537f064..85fbcf036 100644 --- a/src/song_print.h +++ b/src/song_print.h @@ -19,14 +19,16 @@ #ifndef SONG_PRINT_H #define SONG_PRINT_H -#include "song.h" - +struct client; +struct song; struct songvec; -int song_print_info(struct client *client, Song * song); +int +song_print_info(struct client *client, struct song *song); int songvec_print(struct client *client, const struct songvec *sv); -void song_print_url(struct client *client, Song * song); +void +song_print_url(struct client *client, struct song *song); #endif -- cgit v1.2.3