summaryrefslogtreecommitdiff
path: root/core/include/fs.h
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2010-02-28 21:12:46 -0800
committerH. Peter Anvin <hpa@zytor.com>2010-02-28 21:12:46 -0800
commit0fba01f4009b29ec9f2cdadafa33fd4699675542 (patch)
treeda694ea7ffa13e16b47e482966cce261cc9f95ed /core/include/fs.h
parent0f767521fd948e2e00263dbf8c9cae7356871881 (diff)
downloadsyslinux-0fba01f4009b29ec9f2cdadafa33fd4699675542.tar.gz
core: get rid of unmangle_name completelysyslinux-4.00-pre31
The notion of "mangle name" is now restricted to producing a canonical representation, e.g. changing \ -> / for FAT filesystems. However, the resulting mangled name is now always human-readable, so there never is any reason to unmangle a name. Get rid of not just the mangling, but of the resulting unmangled-name buffers and so on. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'core/include/fs.h')
-rw-r--r--core/include/fs.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/include/fs.h b/core/include/fs.h
index ed196ace..ef7eb8b5 100644
--- a/core/include/fs.h
+++ b/core/include/fs.h
@@ -199,10 +199,8 @@ static inline struct file *handle_to_file(uint16_t handle)
/* fs.c */
void pm_mangle_name(com32sys_t *);
-void pm_unmangle_name(com32sys_t *);
void pm_searchdir(com32sys_t *);
void mangle_name(char *, const char *);
-char *unmangle_name(char *, const char *);
int searchdir(const char *name);
void _close_file(struct file *);
size_t pmapi_read_file(uint16_t *handle, void *buf, size_t sectors);