2 * Copyright 2000, 2004 Martin Fuchs
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #define WIN32_LEAN_AND_MEAN
20 #define WIN32_EXTRA_LEAN
29 void _wsplitpath(const WCHAR* path, WCHAR* drv, WCHAR* dir, WCHAR* name, WCHAR* ext)
31 const WCHAR* end; /* end of processed string */
32 const WCHAR* p; /* search pointer */
33 const WCHAR* s; /* copy pointer */
35 /* extract drive name */
36 if (path[0] && path[1]==':') {
45 /* search for end of string or stream separator */
46 for(end=path; *end && *end!=L':'; )
49 /* search for begin of file extension */
50 for(p=end; p>path && *--p!=L'\\' && *p!=L'/'; )
57 for(s=end; (*ext=*s++); )
60 /* search for end of directory name */
62 if (*--p=='\\' || *p=='/') {
84 void _splitpath(const CHAR* path, CHAR* drv, CHAR* dir, CHAR* name, CHAR* ext)
86 const CHAR* end; /* end of processed string */
87 const CHAR* p; /* search pointer */
88 const CHAR* s; /* copy pointer */
90 /* extract drive name */
91 if (path[0] && path[1]==':') {
100 /* search for end of string or stream separator */
101 for(end=path; *end && *end!=':'; )
104 /* search for begin of file extension */
105 for(p=end; p>path && *--p!='\\' && *p!='/'; )
112 for(s=end; (*ext=*s++); )
115 /* search for end of directory name */
117 if (*--p=='\\' || *p=='/') {
138 #endif /* __WINE__ */
142 void main() // test splipath()
144 TCHAR drv[_MAX_DRIVE+1], dir[_MAX_DIR], name[_MAX_FNAME], ext[_MAX_EXT];
146 _tsplitpath(L"x\\y", drv, dir, name, ext);
147 _tsplitpath(L"x\\", drv, dir, name, ext);
148 _tsplitpath(L"\\x", drv, dir, name, ext);
149 _tsplitpath(L"x", drv, dir, name, ext);
150 _tsplitpath(L"", drv, dir, name, ext);
151 _tsplitpath(L".x", drv, dir, name, ext);
152 _tsplitpath(L":x", drv, dir, name, ext);
153 _tsplitpath(L"a:x", drv, dir, name, ext);
154 _tsplitpath(L"a.b:x", drv, dir, name, ext);
155 _tsplitpath(L"W:\\/\\abc/Z:~", drv, dir, name, ext);
156 _tsplitpath(L"abc.EFGH:12345", drv, dir, name, ext);
157 _tsplitpath(L"C:/dos/command.com", drv, dir, name, ext);