diff options
author | Max Horn | 2008-08-27 20:31:22 +0000 |
---|---|---|
committer | Max Horn | 2008-08-27 20:31:22 +0000 |
commit | cb21c25e417bb546f6678ab9da7440c6e1b4b2fd (patch) | |
tree | 0ffb1123245e8ee73d4a4c4db8b166e395bac6d0 /backends/fs/ds | |
parent | 79fafb7b6ae8b23aaa407b4bca56170d2d46b6ac (diff) | |
download | scummvm-rg350-cb21c25e417bb546f6678ab9da7440c6e1b4b2fd.tar.gz scummvm-rg350-cb21c25e417bb546f6678ab9da7440c6e1b4b2fd.tar.bz2 scummvm-rg350-cb21c25e417bb546f6678ab9da7440c6e1b4b2fd.zip |
FSNode code: Merged most versions of lastPathComponent() into one new AbstractFilesystemNode::lastPathComponent() method, with customizable path separator character
svn-id: r34197
Diffstat (limited to 'backends/fs/ds')
-rw-r--r-- | backends/fs/ds/ds-fs.cpp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/backends/fs/ds/ds-fs.cpp b/backends/fs/ds/ds-fs.cpp index cffe4c118d..d206941ab9 100644 --- a/backends/fs/ds/ds-fs.cpp +++ b/backends/fs/ds/ds-fs.cpp @@ -798,25 +798,3 @@ int std_ferror(FILE* handle) { } } // namespace DS - -/** - * Returns the last component of a given path. - * - * Examples: - * /foo/bar.txt would return /bar.txt - * /foo/bar/ would return /bar/ - * - * @param str String containing the path. - * @return Pointer to the first char of the last component inside str. - */ -const char *lastPathComponent(const Common::String &str) { - const char *start = str.c_str(); - const char *cur = start + str.size() - 2; - - while (cur >= start && *cur != '/' && *cur != '\\') { - --cur; - } - - return cur + 1; -} - |