summaryrefslogtreecommitdiff
path: root/firmware/export/pathfuncs.h
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2020-08-20 21:54:00 -0400
committerWilliam Wilgus <wilgus.william@gmail.com>2020-08-20 21:54:00 -0400
commitf850bbbbc4b7345bebde241f651bad1c5c28df66 (patch)
tree1574bcca604f0617130aa9f1c426cfcdc097c901 /firmware/export/pathfuncs.h
parentbd744059cf959c8b9086978b32660efef5925b7d (diff)
downloadrockbox-f850bbbbc4b7345bebde241f651bad1c5c28df66.tar.gz
rockbox-f850bbbbc4b7345bebde241f651bad1c5c28df66.zip
Revert root_redirect :(
This reverts commit 31fc46ded69be7438cca2ba2c2b93c1f200165a6. Change-Id: Ia78618c0e8b25ca65f7c8ae0db1cb9c9b321bad9
Diffstat (limited to 'firmware/export/pathfuncs.h')
-rw-r--r--firmware/export/pathfuncs.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/firmware/export/pathfuncs.h b/firmware/export/pathfuncs.h
index 8858d85d24..92539c54c1 100644
--- a/firmware/export/pathfuncs.h
+++ b/firmware/export/pathfuncs.h
@@ -30,15 +30,10 @@
30/* useful char constants that could be reconfigured if desired */ 30/* useful char constants that could be reconfigured if desired */
31#define PATH_SEPCH '/' 31#define PATH_SEPCH '/'
32#define PATH_SEPSTR "/" 32#define PATH_SEPSTR "/"
33#define PATH_ROOTCHR '/'
34#define PATH_ROOTSTR "/" 33#define PATH_ROOTSTR "/"
35#define PATH_BADSEPCH '\\' 34#define PATH_BADSEPCH '\\'
36#define PATH_DRVSEPCH ':' 35#define PATH_DRVSEPCH ':'
37 36
38#ifndef ROOT_VOLUME
39#define ROOT_VOLUME INT_MAX
40#endif
41
42/* a nicer way to check for "." and ".." than two strcmp() calls */ 37/* a nicer way to check for "." and ".." than two strcmp() calls */
43static inline bool is_dotdir_name(const char *name) 38static inline bool is_dotdir_name(const char *name)
44{ 39{
@@ -80,7 +75,6 @@ static inline bool name_is_dot_dot(const char *name)
80#ifdef HAVE_MULTIVOLUME 75#ifdef HAVE_MULTIVOLUME
81int path_strip_volume(const char *name, const char **nameptr, bool greedy); 76int path_strip_volume(const char *name, const char **nameptr, bool greedy);
82int get_volume_name(int volume, char *name); 77int get_volume_name(int volume, char *name);
83int make_volume_root(int volume, char *dst);
84#endif 78#endif
85 79
86int path_strip_drive(const char *name, const char **nameptr, bool greedy); 80int path_strip_drive(const char *name, const char **nameptr, bool greedy);