aboutsummaryrefslogtreecommitdiff
path: root/src/ls.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-12-16 21:18:33 +0100
committerMax Kellermann <max@duempel.org>2008-12-16 21:18:33 +0100
commitd0024c077d94963d86651748888187944441699c (patch)
treedf7e7f23505fcfa81dde8ec63c35a67e72329eca /src/ls.h
parent1d82edc6d36115ef4ecc251086a5b31c72333e5d (diff)
ls: use bool
Use the C99 "bool" data type instead of "int".
Diffstat (limited to 'src/ls.h')
-rw-r--r--src/ls.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ls.h b/src/ls.h
index 4253431e..5ea65faf 100644
--- a/src/ls.h
+++ b/src/ls.h
@@ -21,12 +21,14 @@
#include "decoder_list.h"
+#include <stdbool.h>
+
struct stat;
struct client;
const char *getSuffix(const char *utf8file);
-int isRemoteUrl(const char *url);
+bool isRemoteUrl(const char *url);
const struct decoder_plugin *
hasMusicSuffix(const char *utf8file, unsigned int next);