Changeset 80358 in vbox for trunk/src/VBox/Runtime/common/string
- Timestamp:
- Aug 20, 2019 7:44:47 PM (5 years ago)
- Location:
- trunk/src/VBox/Runtime/common/string
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/RTStrIStartsWith.cpp
r76553 r80358 34 34 35 35 36 RTDECL( int) RTStrIStartsWith(const char *pszString, const char *pszStart)36 RTDECL(bool) RTStrIStartsWith(const char *pszString, const char *pszStart) 37 37 { 38 38 if (pszString) -
trunk/src/VBox/Runtime/common/string/RTStrStartsWith.cpp
r76553 r80358 34 34 35 35 36 RTDECL( int) RTStrStartsWith(const char *pszString, const char *pszStart)36 RTDECL(bool) RTStrStartsWith(const char *pszString, const char *pszStart) 37 37 { 38 38 if (pszString)
Note:
See TracChangeset
for help on using the changeset viewer.