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
22 void _wsplitpath(const WCHAR
* path
, WCHAR
* drv
, WCHAR
* dir
, WCHAR
* name
, WCHAR
* ext
)
24 const WCHAR
* end
; /* end of processed string */
25 const WCHAR
* p
; /* search pointer */
26 const WCHAR
* s
; /* copy pointer */
28 /* extract drive name */
29 if (path
[0] && path
[1]==':') {
38 end
= path
+ lstrlenW(path
);
40 /* search for begin of file extension */
41 for(p
=end
; p
>path
&& *--p
!='\\' && *p
!='/'; )
48 for(s
=end
; (*ext
=*s
++); )
51 /* search for end of directory name */
53 if (*--p
=='\\' || *p
=='/') {
75 void main() // test splipath()
77 WCHAR drv[_MAX_DRIVE+1], dir[_MAX_DIR], name[_MAX_FNAME], ext[_MAX_EXT];
79 _wsplitpath(L"x\\y", drv, dir, name, ext);
80 _wsplitpath(L"x\\", drv, dir, name, ext);
81 _wsplitpath(L"\\x", drv, dir, name, ext);
82 _wsplitpath(L"x", drv, dir, name, ext);
83 _wsplitpath(L"", drv, dir, name, ext);
84 _wsplitpath(L".x", drv, dir, name, ext);
85 _wsplitpath(L":x", drv, dir, name, ext);
86 _wsplitpath(L"a:x", drv, dir, name, ext);
87 _wsplitpath(L"a.b:x", drv, dir, name, ext);
88 _wsplitpath(L"W:\\/\\abc/Z:~", drv, dir, name, ext);
89 _wsplitpath(L"abc.EFGH:12345", drv, dir, name, ext);
90 _wsplitpath(L"C:/dos/command.com", drv, dir, name, ext);