aboutsummaryrefslogtreecommitdiffstats
path: root/src/ls.h
diff options
context:
space:
mode:
authorAvuton Olrich <avuton@gmail.com>2009-03-03 08:01:42 -0800
committerMax Kellermann <max@duempel.org>2009-03-03 21:25:19 +0100
commite7f034dceff196b7588bca995a5e22bd480f71ca (patch)
tree47001ccd8bd98bc84925f8925b250458cb39b26a /src/ls.h
parent0f64e658fd34923a3be815582be500b8248019a0 (diff)
downloadmpd-e7f034dceff196b7588bca995a5e22bd480f71ca.tar.gz
mpd-e7f034dceff196b7588bca995a5e22bd480f71ca.tar.xz
mpd-e7f034dceff196b7588bca995a5e22bd480f71ca.zip
cmdline: Print available protocols when --version is run.
Diffstat (limited to 'src/ls.h')
-rw-r--r--src/ls.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ls.h b/src/ls.h
index d6e4c98b3..f86845e36 100644
--- a/src/ls.h
+++ b/src/ls.h
@@ -20,6 +20,7 @@
#define MPD_LS_H
#include <stdbool.h>
+#include <stdio.h>
struct client;
@@ -36,4 +37,9 @@ bool uri_supported_scheme(const char *url);
*/
void print_supported_uri_schemes(struct client *client);
+/**
+ * Send a list of supported URI schemes to a file pointer.
+ */
+void print_supported_uri_schemes_to_fp(FILE *fp);
+
#endif