Fixed some typos/errors in comments and docs.
[AROS.git] / compiler / clib / __filesystem_support.c
blob7eaa578ea29ac1cdb2ab3da4f204336c6c9b0414
1 /*
2 Copyright © 2009, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: dos support functions for internal use
6 */
8 #include <aros/debug.h>
10 #include <proto/dos.h>
12 #include "__filesystem_support.h"
14 CONST_STRPTR StripVolume(CONST_STRPTR name) {
15 const char *path = strchr(name, ':');
16 if (path != NULL)
17 path++;
18 else
19 path = name;
20 return path;