aboutsummaryrefslogtreecommitdiffstats
path: root/src/path.h
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-04-15 03:26:15 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-04-15 03:26:15 +0000
commitdf3af7d4f121be6264c0ce307f4a75e844d7282c (patch)
tree0a1030dd9cc500cff146c56ae6b9a896f09fb2e5 /src/path.h
parent794799eaf42f401302ce7e0061ebed1741d2893b (diff)
downloadmpd-df3af7d4f121be6264c0ce307f4a75e844d7282c.tar.gz
mpd-df3af7d4f121be6264c0ce307f4a75e844d7282c.tar.xz
mpd-df3af7d4f121be6264c0ce307f4a75e844d7282c.zip
clean up a little bit main() code
git-svn-id: https://svn.musicpd.org/mpd/trunk@771 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/path.h')
-rw-r--r--src/path.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/path.h b/src/path.h
index d6b8bdae2..67234072a 100644
--- a/src/path.h
+++ b/src/path.h
@@ -23,10 +23,9 @@
#include <sys/param.h>
-extern char musicDir[MAXPATHLEN+1];
-extern char playlistDir[MAXPATHLEN+1];
+extern char * musicDir;
-void initPaths();
+void initPaths(char * playlistDirArg, char * musicDirArg);
void finishPaths();
@@ -52,5 +51,7 @@ char * parentPath(char * path);
/* strips extra "///" and leading "/" and trailing "/" */
char * sanitizePathDup(char * path);
+char * prependCwdToPathDup(char * path);
+
#endif
/* vim:set shiftwidth=4 tabstop=8 expandtab: */