Changeset 18555 in vbox for trunk/include/iprt
- Timestamp:
- Mar 30, 2009 4:21:02 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/string.h
r18552 r18555 884 884 885 885 /** 886 * Locates a case insensitive substring.886 * Locates a case sensitive substring. 887 887 * 888 888 * If any of the two strings are NULL, then NULL is returned. If the needle is 889 889 * an empty string, then the haystack is returned (i.e. matches anything). 890 890 * 891 * @returns Pointer to the first occur ance of the substring if found, NULL if891 * @returns Pointer to the first occurrence of the substring if found, NULL if 892 892 * not. 893 893 * … … 896 896 * 897 897 * @remarks The difference between this and strstr is the handling of NULL 898 * pointers. s898 * pointers. 899 899 */ 900 900 RTDECL(char *) RTStrStr(const char *pszHaystack, const char *pszNeedle); … … 906 906 * an empty string, then the haystack is returned (i.e. matches anything). 907 907 * 908 * @returns Pointer to the first occurance of the substring if found, NULL if908 * @returns Pointer to the first assurance of the substring if found, NULL if 909 909 * not. 910 910 *
Note:
See TracChangeset
for help on using the changeset viewer.