diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-04-15 03:26:15 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-04-15 03:26:15 +0000 |
commit | df3af7d4f121be6264c0ce307f4a75e844d7282c (patch) | |
tree | 0a1030dd9cc500cff146c56ae6b9a896f09fb2e5 /src/path.h | |
parent | 794799eaf42f401302ce7e0061ebed1741d2893b (diff) | |
download | mpd-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.h | 7 |
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: */ |