Fix some msg.c and win.c failures running on NT4 and XP.
[wine/wine-kai.git] / programs / winefile / splitpath.c
bloba794cf615ce0bff0414274b68ea4462ea04fff0f
1 /*
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
22 #include <windows.h>
25 #ifdef __WINE__
26 #ifdef UNICODE
28 void _wsplitpath(const WCHAR* path, WCHAR* drv, WCHAR* dir, WCHAR* name, WCHAR* ext)
30 const WCHAR* end; /* end of processed string */
31 const WCHAR* p; /* search pointer */
32 const WCHAR* s; /* copy pointer */
34 /* extract drive name */
35 if (path[0] && path[1]==':') {
36 if (drv) {
37 *drv++ = *path++;
38 *drv++ = *path++;
39 *drv = L'\0';
41 } else if (drv)
42 *drv = L'\0';
44 /* search for end of string or stream separator */
45 for(end=path; *end && *end!=L':'; )
46 end++;
48 /* search for begin of file extension */
49 for(p=end; p>path && *--p!=L'\\' && *p!=L'/'; )
50 if (*p == L'.') {
51 end = p;
52 break;
55 if (ext)
56 for(s=end; (*ext=*s++); )
57 ext++;
59 /* search for end of directory name */
60 for(p=end; p>path; )
61 if (*--p=='\\' || *p=='/') {
62 p++;
63 break;
66 if (name) {
67 for(s=p; s<end; )
68 *name++ = *s++;
70 *name = L'\0';
73 if (dir) {
74 for(s=path; s<p; )
75 *dir++ = *s++;
77 *dir = L'\0';
81 #else /* UNICODE */
83 void _splitpath(const CHAR* path, CHAR* drv, CHAR* dir, CHAR* name, CHAR* ext)
85 const CHAR* end; /* end of processed string */
86 const CHAR* p; /* search pointer */
87 const CHAR* s; /* copy pointer */
89 /* extract drive name */
90 if (path[0] && path[1]==':') {
91 if (drv) {
92 *drv++ = *path++;
93 *drv++ = *path++;
94 *drv = '\0';
96 } else if (drv)
97 *drv = '\0';
99 /* search for end of string or stream separator */
100 for(end=path; *end && *end!=':'; )
101 end++;
103 /* search for begin of file extension */
104 for(p=end; p>path && *--p!='\\' && *p!='/'; )
105 if (*p == '.') {
106 end = p;
107 break;
110 if (ext)
111 for(s=end; (*ext=*s++); )
112 ext++;
114 /* search for end of directory name */
115 for(p=end; p>path; )
116 if (*--p=='\\' || *p=='/') {
117 p++;
118 break;
121 if (name) {
122 for(s=p; s<end; )
123 *name++ = *s++;
125 *name = '\0';
128 if (dir) {
129 for(s=path; s<p; )
130 *dir++ = *s++;
132 *dir = '\0';
136 #endif /* UNICODE */
137 #endif /* __WINE__ */
141 void main() // test splipath()
143 TCHAR drv[_MAX_DRIVE+1], dir[_MAX_DIR], name[_MAX_FNAME], ext[_MAX_EXT];
145 _tsplitpath(L"x\\y", drv, dir, name, ext);
146 _tsplitpath(L"x\\", drv, dir, name, ext);
147 _tsplitpath(L"\\x", drv, dir, name, ext);
148 _tsplitpath(L"x", drv, dir, name, ext);
149 _tsplitpath(L"", drv, dir, name, ext);
150 _tsplitpath(L".x", drv, dir, name, ext);
151 _tsplitpath(L":x", drv, dir, name, ext);
152 _tsplitpath(L"a:x", drv, dir, name, ext);
153 _tsplitpath(L"a.b:x", drv, dir, name, ext);
154 _tsplitpath(L"W:\\/\\abc/Z:~", drv, dir, name, ext);
155 _tsplitpath(L"abc.EFGH:12345", drv, dir, name, ext);
156 _tsplitpath(L"C:/dos/command.com", drv, dir, name, ext);