2 * Copyright 2000 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
23 void _wsplitpath(const WCHAR
* path
, WCHAR
* drv
, WCHAR
* dir
, WCHAR
* name
, WCHAR
* ext
)
25 const WCHAR
* end
; /* end of processed string */
26 const WCHAR
* p
; /* search pointer */
27 const WCHAR
* s
; /* copy pointer */
29 /* extract drive name */
30 if (path
[0] && path
[1]==':') {
39 /* search for end of string or stream separator */
40 for(end
=path
; *end
&& *end
!=L
':'; )
43 /* search for begin of file extension */
44 for(p
=end
; p
>path
&& *--p
!=L
'\\' && *p
!=L
'/'; )
51 for(s
=end
; *ext
=*s
++; )
54 /* search for end of directory name */
56 if (*--p
=='\\' || *p
=='/') {
78 void _splitpath(const CHAR
* path
, CHAR
* drv
, CHAR
* dir
, CHAR
* name
, CHAR
* ext
)
80 const CHAR
* end
; /* end of processed string */
81 const CHAR
* p
; /* search pointer */
82 const CHAR
* s
; /* copy pointer */
84 /* extract drive name */
85 if (path
[0] && path
[1]==':') {
94 /* search for end of string or stream separator */
95 for(end
=path
; *end
&& *end
!=':'; )
98 /* search for begin of file extension */
99 for(p
=end
; p
>path
&& *--p
!='\\' && *p
!='/'; )
106 for(s
=end
; (*ext
=*s
++); )
109 /* search for end of directory name */
111 if (*--p
=='\\' || *p
=='/') {
134 void main() // test splipath()
136 TCHAR drv[_MAX_DRIVE+1], dir[_MAX_DIR], name[_MAX_FNAME], ext[_MAX_EXT];
138 _tsplitpath(L"x\\y", drv, dir, name, ext);
139 _tsplitpath(L"x\\", drv, dir, name, ext);
140 _tsplitpath(L"\\x", drv, dir, name, ext);
141 _tsplitpath(L"x", drv, dir, name, ext);
142 _tsplitpath(L"", drv, dir, name, ext);
143 _tsplitpath(L".x", drv, dir, name, ext);
144 _tsplitpath(L":x", drv, dir, name, ext);
145 _tsplitpath(L"a:x", drv, dir, name, ext);
146 _tsplitpath(L"a.b:x", drv, dir, name, ext);
147 _tsplitpath(L"W:\\/\\abc/Z:~", drv, dir, name, ext);
148 _tsplitpath(L"abc.EFGH:12345", drv, dir, name, ext);
149 _tsplitpath(L"C:/dos/command.com", drv, dir, name, ext);