Changeset 59067 in vbox
- Timestamp:
- Dec 9, 2015 12:06:07 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r58772 r59067 1770 1770 # define RTStrHash1N RT_MANGLER(RTStrHash1N) 1771 1771 # define RTStrICmp RT_MANGLER(RTStrICmp) 1772 # define RTStrIStartsWith RT_MANGLER(RTStrIStartsWith) 1772 1773 # define RTStrIStr RT_MANGLER(RTStrIStr) 1773 1774 # define RTStrIsCaseFoldable RT_MANGLER(RTStrIsCaseFoldable) … … 1818 1819 # define RTStrSpaceInsert RT_MANGLER(RTStrSpaceInsert) 1819 1820 # define RTStrSpaceRemove RT_MANGLER(RTStrSpaceRemove) 1821 # define RTStrStartsWith RT_MANGLER(RTStrStartsWith) 1820 1822 # define RTStrStr RT_MANGLER(RTStrStr) 1821 1823 # define RTStrStrip RT_MANGLER(RTStrStrip) -
trunk/include/iprt/string.h
r57941 r59067 2157 2157 2158 2158 /** 2159 * Checks whether @a pszString starts with @a pszStart. 2160 * 2161 * @returns true / false. 2162 * @param pszString The string to check. 2163 * @param pszStart The start string to check for. 2164 */ 2165 RTDECL(int) RTStrStartsWith(const char *pszString, const char *pszStart); 2166 2167 /** 2168 * Checks whether @a pszString starts with @a pszStart, case insensitive. 2169 * 2170 * @returns true / false. 2171 * @param pszString The string to check. 2172 * @param pszStart The start string to check for. 2173 */ 2174 RTDECL(int) RTStrIStartsWith(const char *pszString, const char *pszStart); 2175 2176 /** 2159 2177 * Locates a case sensitive substring. 2160 2178 * -
trunk/src/VBox/Runtime/Makefile.kmk
r59057 r59067 508 508 common/string/RTStrNLenEx.cpp \ 509 509 common/string/RTStrPrintHexBytes.cpp \ 510 common/string/RTStrStartsWith.cpp \ 511 common/string/RTStrIStartsWith.cpp \ 510 512 common/string/RTStrStr.cpp \ 511 513 common/string/RTUtf16Copy.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.