diff options
Diffstat (limited to '')
-rw-r--r-- | src/queue_print.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/queue_print.c b/src/queue_print.c index ef9410004..2ca9ccc34 100644 --- a/src/queue_print.c +++ b/src/queue_print.c @@ -24,7 +24,15 @@ #include "locate.h" #include "client.h" -void +/** + * Send detailed information about a range of songs in the queue to a + * client. + * + * @param client the client which has requested information + * @param start the index of the first song (including) + * @param end the index of the last song (excluding) + */ +static void queue_print_song_info(struct client *client, const struct queue *queue, unsigned position) { |