Changeset 21676 in vbox
- Timestamp:
- Jul 17, 2009 12:21:49 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50225
- Location:
- trunk/src/VBox/Runtime/common/path
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/path/RTPathAppend.cpp
r21673 r21676 36 36 #include <iprt/path.h> 37 37 #include <iprt/assert.h> 38 #include <iprt/ctype.h> 38 39 #include <iprt/err.h> 39 40 #include <iprt/string.h> -
trunk/src/VBox/Runtime/common/path/RTPathStripFilename.cpp
r21673 r21676 35 35 #include "internal/iprt.h" 36 36 #include <iprt/path.h> 37 #include <iprt/ctype.h> 37 38 38 39 -
trunk/src/VBox/Runtime/common/path/comparepaths.cpp
r21673 r21676 37 37 #include <iprt/err.h> 38 38 #include <iprt/string.h> 39 #include <iprt/uni.h> 39 40 40 41 -
trunk/src/VBox/Runtime/common/path/rtPathVolumeSpecLen.cpp
r21675 r21676 35 35 #include "internal/iprt.h" 36 36 #include <iprt/string.h> 37 #include <iprt/ctype.h> 37 38 #include "internal/path.h" 38 39 … … 57 58 /* Drive letter. */ 58 59 if ( pszPath[1] == ':' 59 && toupper(pszPath[0]) >= 'A' && toupper(pszPath[0]) <= 'Z')60 && RT_C_IS_ALPHA(pszPath[0]) 60 61 return 2; 61 62 }
Note:
See TracChangeset
for help on using the changeset viewer.