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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 void _wsplitpath(const WCHAR
* path
, WCHAR
* drv
, WCHAR
* dir
, WCHAR
* name
, WCHAR
* ext
)
27 const WCHAR
* end
; /* end of processed string */
28 const WCHAR
* p
; /* search pointer */
29 const WCHAR
* s
; /* copy pointer */
31 /* extract drive name */
32 if (path
[0] && path
[1]==':') {
41 /* search for end of string or stream separator */
42 for(end
=path
; *end
&& *end
!=':'; )
45 /* search for begin of file extension */
46 for(p
=end
; p
>path
&& *--p
!='\\' && *p
!='/'; )
53 for(s
=end
; (*ext
=*s
++); )
56 /* search for end of directory name */
58 if (*--p
=='\\' || *p
=='/') {
80 void _splitpath(const CHAR
* path
, CHAR
* drv
, CHAR
* dir
, CHAR
* name
, CHAR
* ext
)
82 const CHAR
* end
; /* end of processed string */
83 const CHAR
* p
; /* search pointer */
84 const CHAR
* s
; /* copy pointer */
86 /* extract drive name */
87 if (path
[0] && path
[1]==':') {
96 /* search for end of string or stream separator */
97 for(end
=path
; *end
&& *end
!=':'; )
100 /* search for begin of file extension */
101 for(p
=end
; p
>path
&& *--p
!='\\' && *p
!='/'; )
108 for(s
=end
; (*ext
=*s
++); )
111 /* search for end of directory name */
113 if (*--p
=='\\' || *p
=='/') {
134 #endif /* __WINE__ */
138 void main() // test splipath()
140 TCHAR drv[_MAX_DRIVE+1], dir[_MAX_DIR], name[_MAX_FNAME], ext[_MAX_EXT];
142 _tsplitpath(L"x\\y", drv, dir, name, ext);
143 _tsplitpath(L"x\\", drv, dir, name, ext);
144 _tsplitpath(L"\\x", drv, dir, name, ext);
145 _tsplitpath(L"x", drv, dir, name, ext);
146 _tsplitpath(L"", drv, dir, name, ext);
147 _tsplitpath(L".x", drv, dir, name, ext);
148 _tsplitpath(L":x", drv, dir, name, ext);
149 _tsplitpath(L"a:x", drv, dir, name, ext);
150 _tsplitpath(L"a.b:x", drv, dir, name, ext);
151 _tsplitpath(L"W:\\/\\abc/Z:~", drv, dir, name, ext);
152 _tsplitpath(L"abc.EFGH:12345", drv, dir, name, ext);
153 _tsplitpath(L"C:/dos/command.com", drv, dir, name, ext);