summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmaury Pouly <pamaury@rockbox.org>2010-02-07 13:31:52 +0000
committerAmaury Pouly <pamaury@rockbox.org>2010-02-07 13:31:52 +0000
commitcbf136d57adab7aac13c1b3cf05e8c7a3cfa9c3d (patch)
tree7d8f867b08e6a00a96dd44a761b54dc15beacc23
parent64c0cfb0bda0a9d75be6965c2defadfa28c429c9 (diff)
downloadrockbox-cbf136d57adab7aac13c1b3cf05e8c7a3cfa9c3d.zip
rockbox-cbf136d57adab7aac13c1b3cf05e8c7a3cfa9c3d.tar.gz
rockbox-cbf136d57adab7aac13c1b3cf05e8c7a3cfa9c3d.tar.bz2
rockbox-cbf136d57adab7aac13c1b3cf05e8c7a3cfa9c3d.tar.xz
Remove a file that mcuelenaere forgot to delete (see r23763 and r23767).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24543 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/common/misc.c52
1 files changed, 0 insertions, 52 deletions
diff --git a/firmware/common/misc.c b/firmware/common/misc.c
deleted file mode 100644
index ca91132..0000000
--- a/firmware/common/misc.c
+++ /dev/null
@@ -1,52 +0,0 @@
-/***************************************************************************
- * __________ __ ___.
- * Open \______ \ ____ ____ | | _\_ |__ _______ ___
- * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
- * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
- * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
- * \/ \/ \/ \/ \/
- * $Id$
- *
- * Copyright (C) 2002 by Björn Stenberg
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-#include "config.h"
-#include "dir.h"
-#include "stdlib.h"
-#include "string.h"
-
-#ifdef HAVE_MULTIVOLUME
-/* returns on which volume this is, and copies the reduced name
- (sortof a preprocessor for volume-decorated pathnames) */
-int strip_volume(const char* name, char* namecopy)
-{
- int volume = 0;
- const char *temp = name;
-
- while (*temp == '/') /* skip all leading slashes */
- ++temp;
-
- if (*temp && !strncmp(temp, VOL_NAMES, VOL_ENUM_POS))
- {
- temp += VOL_ENUM_POS; /* behind special name */
- volume = atoi(temp); /* number is following */
- temp = strchr(temp, '/'); /* search for slash behind */
- if (temp != NULL)
- name = temp; /* use the part behind the volume */
- else
- name = "/"; /* else this must be the root dir */
- }
-
- strlcpy(namecopy, name, MAX_PATH);
-
- return volume;
-}
-#endif /* #ifdef HAVE_MULTIVOLUME */