diff options
author | Max Kellermann <max@duempel.org> | 2008-10-31 16:47:14 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-31 16:47:14 +0100 |
commit | d8e877e3355d0858c78a6d9a7060a6683024dd30 (patch) | |
tree | cdc996fa583c1f996da6ff18500b7cf360e182e1 /src/path.h | |
parent | ef542716196b90b71480ee952db64c3df736a12e (diff) | |
download | mpd-d8e877e3355d0858c78a6d9a7060a6683024dd30.tar.gz mpd-d8e877e3355d0858c78a6d9a7060a6683024dd30.tar.xz mpd-d8e877e3355d0858c78a6d9a7060a6683024dd30.zip |
path: moved playlist_dir to mapper.c
Added the function map_spl_utf8_to_fs() which replaces
utf8_to_fs_playlist_path().
Diffstat (limited to '')
-rw-r--r-- | src/path.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/path.h b/src/path.h index 013da1373..e341169b0 100644 --- a/src/path.h +++ b/src/path.h @@ -55,16 +55,7 @@ char *pfx_dir(char *dst, const char *path, const size_t path_len, const char *pfx, const size_t pfx_len); -/* relative playlist path to absolute playlist path */ -char *rpp2app_r(char *dst, const char *rel_path); - /* strips extra "///" and leading "/" and trailing "/" */ char *sanitizePathDup(const char *path); -/* - * converts a path passed from a client into an absolute FS path. - * paths passed by clients do NOT have file suffixes in them - */ -void utf8_to_fs_playlist_path(char *path_max_tmp, const char *utf8path); - #endif |