Changeset 80358 in vbox for trunk/include/iprt
- Timestamp:
- Aug 20, 2019 7:44:47 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/string.h
r79562 r80358 2445 2445 * @param pszStart The start string to check for. 2446 2446 */ 2447 RTDECL( int) RTStrStartsWith(const char *pszString, const char *pszStart);2447 RTDECL(bool) RTStrStartsWith(const char *pszString, const char *pszStart); 2448 2448 2449 2449 /** … … 2454 2454 * @param pszStart The start string to check for. 2455 2455 */ 2456 RTDECL( int) RTStrIStartsWith(const char *pszString, const char *pszStart);2456 RTDECL(bool) RTStrIStartsWith(const char *pszString, const char *pszStart); 2457 2457 2458 2458 /**
Note:
See TracChangeset
for help on using the changeset viewer.